diff --git a/go.mod b/go.mod index d5867b0..9edf891 100644 --- a/go.mod +++ b/go.mod @@ -4,6 +4,7 @@ go 1.24.0 require ( fyne.io/fyne/v2 v2.6.3 + github.com/coder/websocket v1.8.14 github.com/jackc/pgx/v5 v5.7.6 github.com/jmoiron/sqlx v1.4.0 github.com/pressly/goose/v3 v3.25.0 @@ -14,7 +15,6 @@ require ( require ( fyne.io/systray v1.11.0 // indirect github.com/BurntSushi/toml v1.4.0 // indirect - github.com/coder/websocket v1.8.14 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dustin/go-humanize v1.0.1 // indirect github.com/fredbi/uri v1.1.0 // indirect diff --git a/server/internal/services/core/httpserver.go b/server/internal/services/core/httpserver.go index 301ae93..42d2c55 100644 --- a/server/internal/services/core/httpserver.go +++ b/server/internal/services/core/httpserver.go @@ -11,4 +11,6 @@ const ServiceNameHTTPServer = "core/http_server" var ErrHTTPServerIsInvalid = errors.New("HTTP server service implementation is invalid") // HTTPServer is an interface for HTTP server service. +// +//nolint:iface type HTTPServer interface{} diff --git a/server/internal/services/core/options.go b/server/internal/services/core/options.go index 80198ff..67ce4ad 100644 --- a/server/internal/services/core/options.go +++ b/server/internal/services/core/options.go @@ -11,4 +11,6 @@ const ServiceNameOptions = "core/options" var ErrOptionsIsInvalid = errors.New("options service implementation is invalid") // Options is an interface for options service. +// +//nolint:iface type Options interface{}