20 lines
262 B
Go
20 lines
262 B
Go
package sc
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"dofdev/tem"
|
|
)
|
|
|
|
// func Handler(ctx *gin.Context) {
|
|
func Handler(w http.ResponseWriter, r *http.Request) {
|
|
data := struct {
|
|
}{}
|
|
tem.Render(
|
|
w, r,
|
|
"sc.html",
|
|
"sc",
|
|
"spatial computing vs paper computing",
|
|
data,
|
|
)
|
|
}
|