add service
Some checks failed
Deploy Smart Search Backend Test / deploy (push) Has been cancelled

This commit is contained in:
vallyenfail
2026-01-19 16:24:33 +03:00
parent 5d52dc4ae2
commit 6d238a96ec
19 changed files with 717 additions and 21 deletions

View File

@@ -12,7 +12,6 @@ type Config struct {
Database DatabaseConfig `yaml:"database"`
AI AIConfig `yaml:"ai"`
Security SecurityConfig `yaml:"security"`
GRPC GRPCConfig `yaml:"grpc"`
Logging LoggingConfig `yaml:"logging"`
}
@@ -37,11 +36,6 @@ type SecurityConfig struct {
CryptoSecret string `yaml:"crypto_secret"`
}
type GRPCConfig struct {
Port int `yaml:"port"`
MaxConnections int `yaml:"max_connections"`
}
type LoggingConfig struct {
Level string `yaml:"level"`
}