|
package config
|
|
|
|
import (
|
|
"dev.sum7.eu/genofire/wifictld-analyzer/capture"
|
|
"dev.sum7.eu/genofire/wifictld-analyzer/web"
|
|
)
|
|
|
|
type Config struct {
|
|
StatePath string `toml:"state_path"`
|
|
Webserver *web.Config `toml:"webserver"`
|
|
Interfaces []*capture.IFaceConfig `toml:"interfaces"`
|
|
}
|