* feat: add client customization * chore: fix linting * feat: allow excluding client function by resource name
22 lines
322 B
Cheetah
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 }}
|
|
}
|
|
|
|
|