Cody Joyce 1 month ago
parent
commit
d2b5ec36c5
1 changed files with 2 additions and 1 deletions
  1. 2 1
      srv/res.go

+ 2 - 1
srv/res.go

@@ -30,8 +30,9 @@ func (res *Res) Send(txt string) {
 	fmt.Fprint(res.w, txt)
 }
 
-func (res *Res) File(filePath string) error {
+func (res *Res) File(filePath string) {
 	http.ServeFile(res.w, res.r, filePath)
+
 	// file, err := os.Open(filePath)
 	// if err != nil {
 	// 	utils.Err(err)