proxy

This commit is contained in:
微凉
2021-10-29 00:02:02 +08:00
parent 0a50fbd080
commit f4969560d4
6 changed files with 49 additions and 0 deletions

View File

@ -3,12 +3,14 @@ package drivers
import (
"encoding/json"
"github.com/Xhofe/alist/model"
"github.com/gofiber/fiber/v2"
)
type Driver interface {
Path(path string, account *model.Account) (*model.File, []*model.File, error)
Link(path string, account *model.Account) (string,error)
Save(account *model.Account, old *model.Account) error
Proxy(ctx *fiber.Ctx)
}
var driversMap = map[string]Driver{}