initial commit

This commit is contained in:
2021-11-10 11:28:54 -06:00
commit b441e33c89
7 changed files with 188 additions and 0 deletions

15
main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import "fmt"
var verbose bool = false
var ip string
var properties []string
func main() {
parseFlags()
result := GetProperties(Lookup(ip, properties))
fmt.Println(result)
}