mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 17:40:26 +08:00
11 lines
248 B
Go
11 lines
248 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package waf
|
||
|
|
|
||
|
|
import "github.com/iwind/TeaGo/maps"
|
||
|
|
|
||
|
|
type ActionConfig struct {
|
||
|
|
Code string `yaml:"code" json:"code"`
|
||
|
|
Options maps.Map `yaml:"options" json:"options"`
|
||
|
|
}
|