[WIP] music platform user data scraper
teal-fm atproto
32
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 89a7f4dbf91300991b9b42347844765f2930ed72 28 lines 465 B view raw
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}