mirror of
https://github.com/Kyren223/eko.git
synced 2026-01-10 14:54:43 +00:00
42 lines
656 B
Go
42 lines
656 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
|
|
package data
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
"github.com/kyren223/eko/pkg/snowflake"
|
|
)
|
|
|
|
type Frequency struct {
|
|
ID snowflake.ID
|
|
NetworkID snowflake.ID
|
|
Name string
|
|
}
|
|
|
|
type Message struct {
|
|
ID snowflake.ID
|
|
SenderID snowflake.ID
|
|
Content string
|
|
FrequencyID *snowflake.ID
|
|
ReceiverID *snowflake.ID
|
|
}
|
|
|
|
type Network struct {
|
|
ID snowflake.ID
|
|
Name string
|
|
OwnerID snowflake.ID
|
|
}
|
|
|
|
type User struct {
|
|
ID snowflake.ID
|
|
Name string
|
|
PublicKey ed25519.PublicKey
|
|
}
|
|
|
|
type UsersNetwork struct {
|
|
UserID snowflake.ID
|
|
NetworkID snowflake.ID
|
|
}
|