Files
bouncer/internal/format/prop.go
William Petit ce8ff3c5c1
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-02 23:13:54 +02:00

19 lines
234 B
Go

package format
type Prop struct {
name string
label string
}
func (p *Prop) Name() string {
return p.name
}
func (p *Prop) Label() string {
return p.label
}
func NewProp(name, label string) Prop {
return Prop{name, label}
}