Files
go-unifi/codegen/client.go.tmpl
Mateusz Filipowicz fadc5ada8b feat: add client customization option (#20)
* feat: add client customization

* chore: fix linting

* feat: allow excluding client function by resource name
2025-02-16 23:00:05 +01:00

22 lines
322 B
Cheetah

// Code generated from ace.jar fields *.json files
// DO NOT EDIT.
package unifi
import (
"context"
{{ range $k, $v := .Imports }}"{{ $v }}"{{- end }}
)
type {{ .Name }} interface {
{{- range $k, $v := .Functions }}
{{ if $v.Comment }}// {{ $v.Comment }}{{ end }}
{{ $v.Signature }}
{{- end }}
}