mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 17:40:26 +08:00
14 lines
222 B
Go
14 lines
222 B
Go
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package utils
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/events"
|
||
|
|
"os"
|
||
|
|
)
|
||
|
|
|
||
|
|
func Exit() {
|
||
|
|
events.Notify(events.EventTerminated)
|
||
|
|
os.Exit(0)
|
||
|
|
}
|