48 lines
487 B
Go
48 lines
487 B
Go
package api
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func StoreDirectory(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func ListDirectory(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func CopyFile(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func MoveFile(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func CompressFile(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func DecompressFile(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func StatFile(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func ReadFileContents(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func WriteFileContents(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func DeleteFile(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func DownloadFile(c *gin.Context) {
|
|
|
|
}
|