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"
|
2018-07-10 21:40:38 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
StatePath string `toml:"state_path"`
|
|
|
|
Interfaces []*capture.IFaceConfig `toml:"interfaces"`
|
|
|
|
}
|