Files
go-unifi/codegen/client.go.tmpl
Mateusz Filipowicz e79dcb13f0 feat: add logging and support for custom logger (#36)
* feat: add support for logging

* fix linting

* chore: remove old APIError in favor of ServerError
2025-02-23 12:59:46 +01:00

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 }}
}