summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-02-13 19:11:52 +0200
committerPaul Buetow <paul@buetow.org>2024-02-13 19:11:52 +0200
commit6c1335b3538dabc82b4931d4bf13a36f86c4666e (patch)
tree3f8971f8b3d81ba09637ee39c9f5e238072edb51 /cmd
parentef80f577771e95c0843658d65ced3dd069634471 (diff)
can pass flags to BPF
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ioriotng/main.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd/ioriotng/main.go b/cmd/ioriotng/main.go
index 16771a0..5173cbb 100644
--- a/cmd/ioriotng/main.go
+++ b/cmd/ioriotng/main.go
@@ -2,10 +2,9 @@ package main
import (
"ioriotng/internal"
+ "ioriotng/internal/flags"
)
func main() {
- // Here could be some flag parsing....
-
- internal.Run()
+ internal.Run(flags.New())
}