df433a9179
Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
137 B
Go
12 lines
137 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/longbin/agent-notify/web"
|
|
)
|
|
|
|
func webHandler() http.Handler {
|
|
return web.Handler()
|
|
}
|