immich-exporter/src/models/immich.go
martabal 8a7ebfefa1
feat: up version
Signed-off-by: martabal <74269598+martabal@users.noreply.github.com>
2023-06-21 23:29:41 +02:00

22 lines
288 B
Go

package models
type StructImmich struct {
APIKey string
URL string
}
var myuser StructImmich
func Setuser(url string, apikey string) {
myuser.URL = url
myuser.APIKey = apikey
}
func Getbaseurl() string {
return myuser.URL
}
func GetApiKey() string {
return myuser.APIKey
}