20 lines
279 B
Go
20 lines
279 B
Go
package config
|
|
|
|
type Config struct {
|
|
SharedSecret string
|
|
Server Server
|
|
Worker Worker
|
|
}
|
|
|
|
type Server struct {
|
|
Address string
|
|
Database string
|
|
}
|
|
|
|
type Worker struct {
|
|
ID string
|
|
TempDir string
|
|
Address string
|
|
Name string
|
|
FFmpegPath string
|
|
}
|