Files
2022-09-04 18:39:34 +10:00

13 lines
147 B
Go

package common
import (
"os"
)
func IsApiKeyValid(api_key string) bool {
if api_key == os.Getenv("API_KEY") {
return true
}
return false
}