Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-10-22 19:41:37 +00:00
parent 5b3cb9948d
commit 5cee69a09e
125 changed files with 251 additions and 127 deletions

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Create a new user account. The email address and username for the account must be unique.

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Delete an account by id

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Login using username or email. The response will return a new session for successful login,

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Logout a user account

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Read an account by id, username or email. Only one need to be specified.

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Read an account by id, username or email. Only one need to be specified.

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Read an account by id, username or email. Only one need to be specified.

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Read a session by the session id. In the event it has expired or is not found and error is returned.

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Send a verification email

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Update the account username or email

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Update the account password

View File

@@ -2,8 +2,9 @@ package example
import (
"fmt"
"github.com/micro/services/clients/go/user"
"os"
"github.com/micro/services/clients/go/user"
)
// Verify the email address of an account from a token sent in an email to the user.