internal

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: May 28, 2026 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

Package internal provides shared helpers for api/rest and api/events. It is not part of the public API.

Index

Constants

This section is empty.

Variables

View Source
var TemplateVarRe = regexp.MustCompile(`\{([^}]+)\}`)

TemplateVarRe matches {varName} placeholders in path or topic templates.

Functions

func BuildFromTemplate

func BuildFromTemplate(
	template string,
	vars map[string]string,
	paramCodecs map[string]codex.Codec[string],
	wrapMissing func(name string) error,
	wrapErr func(name, value string, err error) error,
) (string, error)

BuildFromTemplate substitutes {varName} placeholders in template with values from vars, validating each against the corresponding codec in paramCodecs. wrapMissing is called to produce a typed error when a template variable has no entry in vars. wrapErr is called to produce a typed error when codec validation fails.

func ParseTemplateVars

func ParseTemplateVars(template string) map[string]bool

ParseTemplateVars returns the set of variable names (without braces) found in a path or topic template such as "/users/{id}/posts/{postId}".

Types

This section is empty.

Jump to

Keyboard shortcuts

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