mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-04-27 22:39:31 +07:00
12 lines
197 B
Go
12 lines
197 B
Go
package router
|
|
|
|
import (
|
|
"khairul169/garage-webui/utils"
|
|
"net/http"
|
|
)
|
|
|
|
func GetConfig(w http.ResponseWriter, r *http.Request) {
|
|
config := utils.Garage.Config
|
|
utils.ResponseSuccess(w, config)
|
|
}
|