change to consistent naming scheme

This commit is contained in:
2020-06-09 14:02:32 -05:00
parent 184e045243
commit 872cdf45f3
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ type Auth struct {
}
// build the auth struct
func buildAuth() {
func build_auth() {
// read the auth json file
json, err := ioutil.ReadFile("auth.json")
if err != nil {

View File

@@ -17,7 +17,7 @@ var (
func init() {
// build the authentication struct
buildAuth()
build_auth()
// build the redditbooru sources slice
build_redditbooru_sources()