mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
12 lines
147 B
Go
12 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
|
|
}
|