rano/db/ent/schema/todo.go

19 lines
272 B
Go
Raw Permalink Normal View History

2024-11-10 09:22:33 +00:00
package schema
import "entgo.io/ent"
// Todo holds the schema definition for the Todo entity.
type Todo struct {
ent.Schema
}
// Fields of the Todo.
func (Todo) Fields() []ent.Field {
return nil
}
// Edges of the Todo.
func (Todo) Edges() []ent.Edge {
return nil
}