init
This commit is contained in:
commit
2586161abd
49 changed files with 4171 additions and 0 deletions
13
internal/database/config.go
Normal file
13
internal/database/config.go
Normal file
|
@ -0,0 +1,13 @@
|
|||
package database
|
||||
|
||||
import "github.com/oklog/ulid/v2"
|
||||
|
||||
type Config struct {
|
||||
Name string
|
||||
AdminID *ulid.ULID
|
||||
}
|
||||
|
||||
var DefaultConfig = Config{
|
||||
Name: "Mercury",
|
||||
AdminID: nil,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue