add missing parse command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nathan Coad
2023-07-19 14:36:29 +10:00
parent 8692fa525b
commit dd15312a0d

View File

@@ -13,6 +13,7 @@ func main() {
baseDN := flag.String("baseDN", "OU=Users,DC=example,DC=com", "Base DN to use when attempting to bind to AD")
username := flag.String("username", "user", "Username to use when attempting to bind to AD")
password := flag.String("password", "pass", "Password to use when attempting to bind to AD")
flag.Parse()
config := &auth.Config{
Server: *server,