Compare commits
2 Commits
a101fb122b
...
982b60bde6
Author | SHA1 | Date | |
---|---|---|---|
982b60bde6 | |||
d30e5633e9 |
32
auth/auth.go
32
auth/auth.go
@ -1,5 +1,33 @@
|
|||||||
package sharedauth
|
package sharedauth
|
||||||
|
|
||||||
type InstallId struct {
|
import "time"
|
||||||
InstallId string
|
|
||||||
|
type InstallIdRegisterReq struct {
|
||||||
|
InstallId InstallId
|
||||||
|
}
|
||||||
|
|
||||||
|
type InstallId string
|
||||||
|
|
||||||
|
func (id InstallId) Validate() bool {
|
||||||
|
//TODO: More checks
|
||||||
|
return id != ""
|
||||||
|
}
|
||||||
|
|
||||||
|
type RedirResp struct {
|
||||||
|
RedirectUrl string
|
||||||
|
}
|
||||||
|
|
||||||
|
type LauncherSession struct {
|
||||||
|
// Username string
|
||||||
|
// DiscordId string
|
||||||
|
SessionToken string
|
||||||
|
InstallId string
|
||||||
|
Expiry time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
type ValidateReq struct {
|
||||||
|
LauncherToken string
|
||||||
|
}
|
||||||
|
|
||||||
|
type ValidateResp struct {
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package sharedUtils
|
package sharedDistribution
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
Loading…
Reference in New Issue
Block a user