mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 10:33:14 +00:00
10 lines
116 B
Go
10 lines
116 B
Go
package adapter
|
|
|
|
type PreStarter interface {
|
|
PreStart() error
|
|
}
|
|
|
|
type PostStarter interface {
|
|
PostStart() error
|
|
}
|