chore: add admin to config
ci-agent / build (push) Failing after 25s

This commit is contained in:
d3m0k1d
2026-04-03 23:51:03 +03:00
parent 94ff261c9a
commit 514e3e30b6
2 changed files with 70 additions and 1 deletions
+7
View File
@@ -2,6 +2,7 @@ package config
type HellreigN struct {
Database Databases `yaml:"database"`
Admin Admin `yaml:"admin"`
}
type Databases struct {
@@ -11,3 +12,9 @@ type Databases struct {
Clickhouse_password string `yaml:"clickhouse_password"`
Clickhouse_database string `yaml:"clickhouse_database"`
}
type Admin struct {
Admin_name string `yaml:"admin_name"`
Admin_last_name string `yaml:"admin_last_name"`
Admin_login string `yaml:"admin_login"`
Admin_password string `yaml:"admin_password"`
}