13 lines
393 B
Go
13 lines
393 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/vaultdrop/backend/pkg/api"
|
|
)
|
|
|
|
func FilesList(c *gin.Context) { api.NotImplemented(c) }
|
|
func FilesGet(c *gin.Context) { api.NotImplemented(c) }
|
|
func FilesDelete(c *gin.Context) { api.NotImplemented(c) }
|
|
func FilesSearch(c *gin.Context) { api.NotImplemented(c) }
|
|
func FilesUpload(c *gin.Context) { api.NotImplemented(c) }
|