51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Transaction struct {
|
|
ID string `db:"id" json:"id"`
|
|
MembreID string `db:"membre_id" json:"membre_id"`
|
|
GivenAt *time.Time `db:"given_at" json:"given_at"`
|
|
IsPerpetual bool `db:"is_perpetual" json:"is_perpetual"`
|
|
}
|
|
|
|
type Config struct {
|
|
Web WebConfig `json:"web"`
|
|
Api ApiConfig `json:"api"`
|
|
Bottin BottinConfig `json:"bottin"`
|
|
Db DbConfig `json:"db"`
|
|
}
|
|
|
|
type ApiConfig struct {
|
|
Key string `json:"key"`
|
|
Port int `json:"port"`
|
|
}
|
|
|
|
type BottinConfig struct {
|
|
Api struct {
|
|
Host string `json:"host"`
|
|
Key string `json:"key"`
|
|
Protocol string `json:"protocol"`
|
|
Port int `json:"port"`
|
|
} `json:"api"`
|
|
}
|
|
|
|
type DbConfig struct {
|
|
Database string `json:"database"`
|
|
Host string `json:"host"`
|
|
Password string `json:"password"`
|
|
Port int `json:"port"`
|
|
User string `json:"user"`
|
|
}
|
|
|
|
type WebConfig struct {
|
|
Api struct {
|
|
Host string `json:"host"`
|
|
Key string `json:"key"`
|
|
Port int `json:"port"`
|
|
Protocol string `json:"protocol"`
|
|
} `json:"api"`
|
|
Password string `json:"password"`
|
|
Port int `json:"port"`
|
|
User string `json:"user"`
|
|
}
|