14 lines
228 B
Go
Raw Normal View History

2024-08-18 05:54:08 +07:00
package router
import (
"khairul169/garage-webui/utils"
"net/http"
)
2024-08-18 22:57:08 +07:00
type Config struct{}
func (c *Config) GetAll(w http.ResponseWriter, r *http.Request) {
2024-08-18 05:54:08 +07:00
config := utils.Garage.Config
utils.ResponseSuccess(w, config)
}