mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-10-14 14:59:32 +07:00

- Change Docker image references in docker-compose.yml and documentation - Update Go module path and import statements in backend code - Modify build script to reflect new image name - Remove outdated copyright information from LICENSE file
14 lines
228 B
Go
14 lines
228 B
Go
package router
|
|
|
|
import (
|
|
"khairul169/garage-webui/utils"
|
|
"net/http"
|
|
)
|
|
|
|
type Config struct{}
|
|
|
|
func (c *Config) GetAll(w http.ResponseWriter, r *http.Request) {
|
|
config := utils.Garage.Config
|
|
utils.ResponseSuccess(w, config)
|
|
}
|