11 lines
299 B
Go
11 lines
299 B
Go
|
package main
|
||
|
|
||
|
const (
|
||
|
CONFIG_PLACEHOLDER string = "https://old.reddit.com/prefs/apps"
|
||
|
USER_AGENT string = "linux:omordl:v0.1.0 (by u/the_blank_x)"
|
||
|
EXAMPLE_CONFIG string = `{
|
||
|
"client_id": "https://old.reddit.com/prefs/apps",
|
||
|
"client_secret": "https://old.reddit.com/prefs/apps"
|
||
|
}`
|
||
|
)
|