mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-06 09:23:57 +03:00
23 lines
388 B
Go
23 lines
388 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/Redume/EveryNasa/api/utils"
|
|
"github.com/reujab/wallpaper"
|
|
"net/http"
|
|
)
|
|
|
|
var WallpaperUpdate = func(w http.ResponseWriter, r *http.Request) {
|
|
var url string
|
|
|
|
url = r.FormValue("url")
|
|
|
|
if url == "" {
|
|
utils.Respond(w, utils.Message(false, "URL is required"))
|
|
return
|
|
}
|
|
|
|
err := wallpaper.SetFromURL(url)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|