Linting.
All checks were successful
Linting and tests / Linting (push) Successful in 21s

This commit is contained in:
Stanislav Nikitin 2025-09-15 09:34:23 +05:00
parent 2c13e3f380
commit b787a2b22a
Signed by: pztrn
GPG Key ID: 1E944A0F0568B550
3 changed files with 5 additions and 1 deletions

2
go.mod
View File

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

View File

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

View File

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