mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
22 lines
352 B
Go
22 lines
352 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
//go:build !script
|
|
// +build !script
|
|
|
|
package nodes
|
|
|
|
func (this *Node) reloadCommonScripts() error {
|
|
return nil
|
|
}
|
|
|
|
func (this *Node) reloadIPLibrary() {
|
|
|
|
}
|
|
|
|
func (this *Node) notifyPlusChange() error {
|
|
return nil
|
|
}
|
|
|
|
func (this *Node) execTOAChangedTask() error {
|
|
return nil
|
|
}
|