blob: 33cf839a19a756c5cf8c7528c192bbda888cbe96 [file] [log] [blame]
lb5tr716ecf62019-08-05 17:33:29 -07001package model
2
3type sqlPGPKey struct {
4 ID string `db:"id"`
5 Fingerprint string `db:"fingerprint"`
6 KeyData string `db:"key_data"`
7 Okay bool `db:"okay"`
8 TimeCreated int64 `db:"time_created"`
9}