linstrom/storage/followRequests.go
mStar a8abfb2219 Add follow requests to db
TODO: Add functions for it
2024-11-07 10:49:03 +01:00

10 lines
155 B
Go

package storage
import "time"
type FollowRequest struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
FromId string
ToId string
}