Personal fork of the mighty, self-hostable Git server for the command line 🍦
1package models 2 3// 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}