forked from phc/cluster-dashboard
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
273 B
Go
18 lines
273 B
Go
2 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"log"
|
||
|
"os"
|
||
|
|
||
|
"git.phc.dm.unipi.it/phc/cluster-dashboard/backend/routes"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
enc := json.NewEncoder(os.Stdout)
|
||
|
enc.SetIndent("", " ")
|
||
|
if err := enc.Encode(routes.HtmlEntrypoints); err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
}
|