1package models23// PublicKey represents a public key.4type PublicKey struct {5 ID int64 `db:"id"`6 UserID int64 `db:"user_id"`7 PublicKey string `db:"public_key"`8 CreatedAt string `db:"created_at"`9 UpdatedAt string `db:"updated_at"`10}
Fork https://github.com/charmbracelet/soft-serve
git clone git://git.lin.moe/go/soft-serve.git
1package models23// PublicKey represents a public key.4type PublicKey struct {5 ID int64 `db:"id"`6 UserID int64 `db:"user_id"`7 PublicKey string `db:"public_key"`8 CreatedAt string `db:"created_at"`9 UpdatedAt string `db:"updated_at"`10}