[WIP] music platform user data scraper
teal-fm
atproto
1package models
2
3import "time"
4
5// an end user of piper
6type User struct {
7 ID int64
8 Username *string
9 Email *string
10
11 // spotify information
12 SpotifyID *string
13 AccessToken *string
14 RefreshToken *string
15 TokenExpiry *time.Time
16
17 // lfm information
18 LastFMUsername *string
19
20 // atp info
21 ATProtoDID *string
22 ATProtoAccessToken *string
23 ATProtoRefreshToken *string
24 ATProtoTokenExpiry *time.Time
25
26 CreatedAt time.Time
27 UpdatedAt time.Time
28}