forked from mirrors/homebox
5bbb969763
* remove repo for document tokens * remove schema for doc tokens * fix id template and generate cmd * schema updates * code gen * bump dependencies * fix broken migrations + add maintenance entry type * spelling * remove debug logger * implement repository layer * routes * API client * wip: maintenance log * remove depreciated call
53 lines
767 B
Go
53 lines
767 B
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
func (a *Attachment) GetID() uuid.UUID {
|
|
return a.ID
|
|
}
|
|
|
|
func (ar *AuthRoles) GetID() int {
|
|
return ar.ID
|
|
}
|
|
|
|
func (at *AuthTokens) GetID() uuid.UUID {
|
|
return at.ID
|
|
}
|
|
|
|
func (d *Document) GetID() uuid.UUID {
|
|
return d.ID
|
|
}
|
|
|
|
func (gr *Group) GetID() uuid.UUID {
|
|
return gr.ID
|
|
}
|
|
|
|
func (git *GroupInvitationToken) GetID() uuid.UUID {
|
|
return git.ID
|
|
}
|
|
|
|
func (i *Item) GetID() uuid.UUID {
|
|
return i.ID
|
|
}
|
|
|
|
func (_if *ItemField) GetID() uuid.UUID {
|
|
return _if.ID
|
|
}
|
|
|
|
func (l *Label) GetID() uuid.UUID {
|
|
return l.ID
|
|
}
|
|
|
|
func (l *Location) GetID() uuid.UUID {
|
|
return l.ID
|
|
}
|
|
|
|
func (me *MaintenanceEntry) GetID() uuid.UUID {
|
|
return me.ID
|
|
}
|
|
|
|
func (u *User) GetID() uuid.UUID {
|
|
return u.ID
|
|
}
|