start migration of user

This commit is contained in:
2023-04-18 01:37:36 -07:00
parent 63f3dfe255
commit cfa17cc99e
2 changed files with 17 additions and 232 deletions

17
client/user.go Normal file
View File

@@ -0,0 +1,17 @@
package client
import (
"context"
"net/http"
"strings"
)
func (c Client) GetUserInfoV1UserGet(ctx context.Context) (UserResponseModel, *http.Response, error) {
localVarHttpMethod = strings.ToUpper("Get")
localVarPath := a.client.cfg.BasePath + "/v1/user"
}
func (c Client) GetSubscriptionInfo(ctx context.Context) error {
localVarHttpMethod = strings.ToUpper("Get")
localVarPath := a.client.cfg.BasePath + "/v1/user/subscription"
}