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