This commit is contained in:
Michael Quigley 2024-02-05 10:38:56 -05:00
parent 5090e61a8f
commit c715719e83
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -1,10 +1,10 @@
package main
import (
"fmt"
"github.com/openziti/zrok/controller"
"github.com/openziti/zrok/controller/config"
"github.com/openziti/zrok/controller/store"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
@ -62,5 +62,5 @@ func (cmd *adminCreateAccount) run(_ *cobra.Command, args []string) {
if _, err := str.CreateAccount(a, trx); err != nil {
panic(err)
}
logrus.Infof("account token = %v", token)
fmt.Println(token)
}