Remove unused code

This commit is contained in:
2025-03-20 18:34:28 +01:00
parent e4327cd3a8
commit 3a5fa290e2
11 changed files with 3 additions and 349 deletions

View File

@@ -18,17 +18,12 @@ type StoreConfig struct {
Type string `toml:"Type"`
EnableCache bool `toml:"EnableCache"`
Postgres PostgresStoreConfig `toml:"Postgres"`
Bolt BoltStoreConfig `toml:"Bolt"`
}
type PostgresStoreConfig struct {
DSN string `toml:"DSN"`
}
type BoltStoreConfig struct {
DBPath string `toml:"DBPath"`
}
type HoneypotConfig struct {
ListenAddr string `toml:"ListenAddr"`
LogLevel string `toml:"LogLevel"`