Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 371 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 371 Bytes

wwf - working with files 📃

Package for working with files

import to progect

package main

import (
  wwf "api/wwf/routes"

  "github.com/gin-gonic/gin"
)

func main() {
  r := gin.Default()

  api := r.Group("/api/wwz")
  wwf.RegisterRoutes(api)

  r.Run(":3000")
}

Zip methods

  • api/zip -> ZipFilesHendler
  • api/unzip -> UnZipHendler