Categorygithub.com/liut/keeper
repositorypackage
0.0.0-20230310035549-ee21cc0ffcdd
Repository: https://github.com/liut/keeper.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

keeper

Web monitor for golang application

package main

import (
	"github.com/liut/keeper"
	"net/http"
)

func main() {
	http.HandleFunc("/_server/monitor/", keeper.HandleMonitor)
	http.HandleFunc("/_server/stacks/", keeper.HandleStack)

	// other handles

	http.ListenAndServe(":8080", nil)
}