mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
32 lines
602 B
Go
32 lines
602 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
//go:build !plus
|
|
|
|
package nodes
|
|
|
|
import "github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
|
|
|
var sharedTOAManager = NewTOAManager()
|
|
|
|
type TOAManager struct {
|
|
}
|
|
|
|
func NewTOAManager() *TOAManager {
|
|
return &TOAManager{}
|
|
}
|
|
|
|
func (this *TOAManager) Apply(config *nodeconfigs.TOAConfig) error {
|
|
return nil
|
|
}
|
|
|
|
func (this *TOAManager) Config() *nodeconfigs.TOAConfig {
|
|
return nil
|
|
}
|
|
|
|
func (this *TOAManager) Quit() error {
|
|
return nil
|
|
}
|
|
|
|
func (this *TOAManager) SendMsg(msg string) error {
|
|
return nil
|
|
}
|