fortify/main.go
Ophestra Umiker 491cc16d53
cli: parse and resolve flags
Copy all flags from upstream. The machinectl flag is dropped as it does nothing. the flag package is used to reduce complexity since we do not care about compatibility with upstream.

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
2024-07-09 15:39:40 +09:00

13 lines
100 B
Go

package main
import (
"flag"
)
var Version = "impure"
func main() {
flag.Parse()
copyArgs()
}