11 lines
202 B
Go
11 lines
202 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"dev.sum7.eu/wifictld/analyzer/capture"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
StatePath string `toml:"state_path"`
|
||
|
Interfaces []*capture.IFaceConfig `toml:"interfaces"`
|
||
|
}
|