https://github.com/core-go/password
https://github.com/core-go/password
change-password forgot-password password reset-password
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/core-go/password
- Owner: core-go
- Created: 2020-07-05T09:05:31.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-18T16:32:13.000Z (about 1 year ago)
- Last Synced: 2025-01-10T04:15:08.599Z (4 months ago)
- Topics: change-password, forgot-password, password, reset-password
- Language: Go
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password

- forgot password
- change password (also support change password 2 factors)
- reset password## Models
- PasswordChange
- PasswordReset## Services
- PasswordService## Installation
Please make sure to initialize a Go module before installing core-go/password:```shell
go get -u github.com/core-go/password
```Import:
```go
import "github.com/core-go/password"
```