Add warp account methods

This commit is contained in:
problematicconsumer
2024-02-18 12:31:17 +03:30
parent 3843ecd0d5
commit 203bd51f6d
3 changed files with 40 additions and 0 deletions

View File

@@ -36,3 +36,7 @@ func BuildConfig(path string, configOptionsJson string) (string, error) {
}
return config.BuildConfigJson(*configOptions, options)
}
func GenerateWarpConfig(licenseKey string, accountId string, accessToken string) (string, error) {
return config.GenerateWarpAccount(licenseKey, accountId, accessToken)
}