* feat: add support for logging * fix linting * chore: remove old APIError in favor of ServerError
24 lines
334 B
Cheetah
24 lines
334 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 {
|
|
|
|
Logger
|
|
|
|
{{- range $k, $v := .Functions }}
|
|
|
|
{{ if $v.Comment }}// {{ $v.Comment }}{{ end }}
|
|
{{ $v.Signature }}
|
|
|
|
{{- end }}
|
|
}
|
|
|
|
|