wifictld-analyzer/config/config.go

13 lines
299 B
Go
Raw Normal View History

2018-07-10 21:40:38 +02:00
package config
import (
2019-02-28 16:22:55 +01:00
"dev.sum7.eu/genofire/wifictld-analyzer/capture"
2019-03-01 10:54:19 +01:00
"dev.sum7.eu/genofire/wifictld-analyzer/web"
2018-07-10 21:40:38 +02:00
)
type Config struct {
StatePath string `toml:"state_path"`
2019-03-01 10:54:19 +01:00
Webserver *web.Config `toml:"webserver"`
2018-07-10 21:40:38 +02:00
Interfaces []*capture.IFaceConfig `toml:"interfaces"`
}