iptables-helper/pkg/utils/fiber/prefork.go

10 lines
111 B
Go
Raw Normal View History

2023-11-02 02:49:07 +08:00
package fiber
import "github.com/gofiber/fiber/v2"
func Exec(fn func()) {
if !fiber.IsChild() {
fn()
}
}