10 lines
137 B
Go
10 lines
137 B
Go
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
func (c *Controller) EndRoute(w http.ResponseWriter, r *http.Request) {
|
|
os.Exit(0)
|
|
}
|