wireguard-dashboard/compoment/wireguard.go

16 lines
226 B
Go
Raw Normal View History

2024-03-07 17:07:41 +08:00
package compoment
type wireguard struct{}
func Wireguard() wireguard {
return wireguard{}
}
// Apply
// @description: 应用配置
// @receiver wireguard
// @return err
func (wireguard) Apply() (err error) {
return nil
}