template

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 25, 2026 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Overview

Package template provides protocol template system for rapid protocol creation.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func FormatList

func FormatList(templates []Template) string

FormatList formats template list for display.

func Render

func Render(tmpl *Template, vars map[string]string) string

Render renders a template with the given variables.

Types

type Template

type Template struct {
	Name        string     `json:"name"`
	Description string     `json:"description"`
	Category    string     `json:"category"` // "tlv", "rpc", "stream", "request-response"
	Variables   []Variable `json:"variables"`
	Body        string     `json:"body"`
}

Template represents a protocol template.

func BuiltinTemplates

func BuiltinTemplates() []Template

BuiltinTemplates returns all built-in protocol templates.

type Variable

type Variable struct {
	Name    string `json:"name"`
	Default string `json:"default"`
	Desc    string `json:"description"`
}

Variable represents a template variable.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL