chore: Chore: adjust the loading order, and then load the resource at last

This commit is contained in:
Skyxim
2023-03-14 22:37:07 +08:00
parent 0f24c2f849
commit 09c53e7cb7
3 changed files with 54 additions and 28 deletions

9
constant/status.go Normal file
View File

@ -0,0 +1,9 @@
package constant
type TunnelStatus uint8
const (
TunnelSuspend TunnelStatus = iota
TunnelInner
TunnelRunning
)