17 lines
428 B
Go
17 lines
428 B
Go
|
package main
|
||
|
|
||
|
type EnvironmentStruct struct {
|
||
|
ANILIST_SECRET_TOKEN string
|
||
|
ANILIST_APP_ID string
|
||
|
ANILIST_APP_NAME string
|
||
|
ANILIST_CALLBACK_URI string
|
||
|
SIMKL_CLIENT_ID string
|
||
|
SIMKL_CLIENT_SECRET string
|
||
|
SIMKL_CALLBACK_URI string
|
||
|
MAL_CLIENT_ID string
|
||
|
MAL_CLIENT_SECRET string
|
||
|
MAL_CALLBACK_URI string
|
||
|
}
|
||
|
|
||
|
// created a separate environment.go file and add var Environment EnvironmentStruct = {}
|