This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
thrempp/models/account_threema.go

20 lines
252 B
Go
Raw Normal View History

2019-05-31 10:07:40 +02:00
package models
import (
"github.com/jinzhu/gorm"
"dev.sum7.eu/genofire/golang-lib/database"
)
type AccountThreema struct {
gorm.Model
XMPPID uint
XMPP JID
TID []byte
LSK []byte
}
func init() {
database.AddModel(&AccountThreema{})
}