feat: add embedded web dashboard for remote server

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-02 14:36:41 +08:00
parent 8c43a96817
commit df433a9179
7 changed files with 531 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package server
import (
"net/http"
"github.com/longbin/agent-notify/web"
)
func webHandler() http.Handler {
return web.Handler()
}