Moving go code to subdir.

This commit is contained in:
2025-08-08 15:17:12 +02:00
parent 853bee22db
commit e8d042b65e
10 changed files with 17 additions and 24 deletions

View File

@@ -0,0 +1,15 @@
package functions
import (
"flag"
)
func FlagSet(name string) (found bool) {
found = false
flag.Visit(func (f *flag.Flag) {
if f.Name == name {
found = true
}
})
return
}