mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-02-20 00:01:16 +00:00
9 lines
116 B
Go
9 lines
116 B
Go
package adapter
|
|
|
|
type PreStarter interface {
|
|
PreStart() error
|
|
}
|
|
|
|
type PostStarter interface {
|
|
PostStart() error
|
|
}
|