sing-box/adapter/prestart.go

10 lines
116 B
Go
Raw Normal View History

2023-03-18 20:26:58 +08:00
package adapter
type PreStarter interface {
PreStart() error
}
2023-07-02 16:45:30 +08:00
type PostStarter interface {
PostStart() error
2023-03-18 20:26:58 +08:00
}