fix: code style
ci-agent / build (push) Failing after 24s

This commit is contained in:
d3m0k1d
2026-04-03 22:50:07 +03:00
parent 28ef2dc1fd
commit 83427193bc
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -2,8 +2,9 @@ package config
import ( import (
"fmt" "fmt"
"gopkg.in/yaml.v3"
"os" "os"
"gopkg.in/yaml.v3"
) )
func ImportSettings(path string) (*HellreigN, error) { func ImportSettings(path string) (*HellreigN, error) {
-1
View File
@@ -10,4 +10,3 @@ type Databases struct {
Clickhouse_user string `yaml:"clickhouse_user"` Clickhouse_user string `yaml:"clickhouse_user"`
Clickhouse_password string `yaml:"clickhouse_password"` Clickhouse_password string `yaml:"clickhouse_password"`
} }
+2 -1
View File
@@ -3,8 +3,9 @@ package storage
import ( import (
"database/sql" "database/sql"
"fmt" "fmt"
_ "modernc.org/sqlite"
"strings" "strings"
_ "modernc.org/sqlite"
) )
var pragmas = map[string]string{ var pragmas = map[string]string{