18 lines
229 B
Go
18 lines
229 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"github.com/jinzhu/gorm"
|
||
|
|
||
|
"dev.sum7.eu/genofire/golang-lib/database"
|
||
|
)
|
||
|
|
||
|
type AccountXMPP struct {
|
||
|
gorm.Model
|
||
|
XMPPUser string
|
||
|
XMPPServer string
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
database.AddModel(&AccountXMPP{})
|
||
|
}
|