sing-box/adapter/prestart.go

10 lines
116 B
Go
Raw Normal View History

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