mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
19 lines
227 B
Go
19 lines
227 B
Go
package valid
|
|
|
|
import "fbc/ent"
|
|
|
|
// User holds the user schema.
|
|
type User struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Group holds the group schema.
|
|
type Group struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Tag holds the tag schema.
|
|
type Tag struct {
|
|
ent.Schema
|
|
}
|