Dependencies
Overview
Get Started
type Dependency interface {
Serializable
// ID returns the unique identifier for the extension.
//
// The identifier must:
// - Be no more than 255 characters long.
// - Start with an alphanumeric character [a-zA-Z0-9].
// - Contain only alphanumeric characters, hyphens (-), or underscores (_) thereafter.
//
// Identifiers that do not meet these constraints are considered invalid.
ID() string
}
type Serializable interface {
encoding.BinaryMarshaler
encoding.BinaryUnmarshaler
}Last updated