Added login flow to get access token

This commit is contained in:
David J. Allen 2024-03-15 17:22:00 -06:00
parent 6b6b694f42
commit 7760857ae5
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
3 changed files with 127 additions and 1 deletions

View file

@ -8,6 +8,7 @@ import (
)
var (
accessToken string
timeout int
threads int
ports []int
@ -21,7 +22,7 @@ var (
drivers []string
preferredDriver string
ipmitoolPath string
outputPath string
outputPath string
verbose bool
)