mirror of https://github.com/status-im/fathom.git
10 lines
115 B
Go
10 lines
115 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func RegisterRoutes() {
|
||
|
http.HandleFunc("/api/visits", GetVisitsHandler)
|
||
|
}
|