package
Version:
v0.1.15
Opens a new window with list of versions in this module.
Published: Nov 18, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Clients struct {
ID string `sql:"id, primary_key"`
AccountID string `sql:"account_id, foreign_key=account.id"`
OS string `sql:"os"`
IP string `sql:"ip"`
Hostname string `sql:"hostname"`
Expires string `sql:"expires"`
}
type Provider struct {
ID string `sql:"id, primary_key"`
AccountID string `sql:"account_id, foreign_key=account.id"`
Name string `sql:"name"`
Login string `sql:"login"`
AvatarURL string `sql:"avatar_url"`
ProfileURL string `sql:"profile_url"`
Email string `sql:"email"`
}
type Sessions struct {
ID string `sql:"id, primary_key"`
AccountID string `sql:"account_id, foreign_key=account.id"`
BrowserInfo string `sql:"browser_info"`
AccessToken string `sql:"access_token"`
Expires string `sql:"expires"`
IsOnline bool `sql:"is_online"`
}
Source Files
¶
Directories
¶
Click to show internal directories.
Click to hide internal directories.