mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
7 lines
141 B
Go
7 lines
141 B
Go
package sessionprewarm
|
|
|
|
import "net/http"
|
|
|
|
func SessionPrewarm(rw http.ResponseWriter, r *http.Request) {
|
|
rw.Write([]byte("hello work!"))
|
|
}
|