12 lines
134 B
Go
12 lines
134 B
Go
|
package config
|
||
|
|
||
|
import (
|
||
|
"git.luj0ga.de/franconian/matrix"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
Db string
|
||
|
Listen string
|
||
|
Matrix matrix.Config
|
||
|
}
|