mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
make the base url a seperate variable
This commit is contained in:
parent
dd788efb70
commit
ee5796e802
|
@ -8,8 +8,12 @@ import (
|
|||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
var (
|
||||
basePath = "https://customapi.aidenwallis.co.uk/"
|
||||
)
|
||||
|
||||
func ApiCall(uri string) (string, error) {
|
||||
resp, err := http.Get(fmt.Sprintf("https://customapi.aidenwallis.co.uk/%s", uri))
|
||||
resp, err := http.Get(fmt.Sprint(basePath + uri))
|
||||
if err != nil {
|
||||
log.Error(err)
|
||||
return "Something went wrong FeelsBadMan", err
|
||||
|
|
Loading…
Reference in a new issue