feat: openid login

This commit is contained in:
zzw
2026-09-02 17:37:12 +08:00
parent 540f74f9b7
commit bb14f9e324
38 changed files with 1627 additions and 1091 deletions
+13
View File
@@ -0,0 +1,13 @@
package auth
type Client struct {
AppID string
Secret string
}
func NewClient(appID, secret string) *Client {
return &Client{
AppID: appID,
Secret: secret,
}
}