mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-02-24 15:52:15 +08:00
11 lines
168 B
Go
11 lines
168 B
Go
package utils
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
// MainAppExec 仅主进程执行 忽略子进程
|
|
func MainAppExec(fn func()) {
|
|
if !fiber.IsChild() {
|
|
fn()
|
|
}
|
|
}
|