12 lines
163 B
Go
12 lines
163 B
Go
|
|
package handlers
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
func VolunteerSchedualHandler(w *http.ResponseWriter, r http.Request) {
|
||
|
|
|
||
|
|
fmt.Print("Not Implementated Yet!!!")
|
||
|
|
}
|