1234567891011121314 |
- package main
- import (
- "github.com/langgenius/dify-sandbox/internal/core/lib/python"
- )
- import "C"
- //export DifySeccomp
- func DifySeccomp(uid int, gid int, enable_network bool) {
- python.InitSeccomp(uid, gid, enable_network)
- }
- func main() {}
|