go-lemmy/types/instance.gen.go

16 lines
569 B
Go
Raw Normal View History

2023-01-31 03:38:57 +00:00
// Source: lemmy/crates/db_schema/src/source/instance.rs
2023-04-21 02:27:38 +00:00
// Code generated by go.elara.ws/go-lemmy/cmd/gen (struct generator). DO NOT EDIT.
2023-01-31 03:38:57 +00:00
package types
type Instance struct {
ID int `json:"id" url:"id,omitempty"`
Domain string `json:"domain" url:"domain,omitempty"`
Published LemmyTime `json:"published" url:"published,omitempty"`
Updated LemmyTime `json:"updated" url:"updated,omitempty"`
}
type InstanceForm struct {
Domain string `json:"domain" url:"domain,omitempty"`
Updated LemmyTime `json:"updated" url:"updated,omitempty"`
}