Files
OpenList/server/driver.go

10 lines
165 B
Go
Raw Normal View History

2021-10-26 22:28:37 +08:00
package server
import (
2021-12-06 15:55:05 +08:00
"github.com/Xhofe/alist/drivers/base"
2021-11-13 15:53:26 +08:00
"github.com/gin-gonic/gin"
2021-10-26 22:28:37 +08:00
)
2021-11-13 15:53:26 +08:00
func GetDrivers(c *gin.Context) {
2021-12-06 15:55:05 +08:00
SuccessResp(c, base.GetDrivers())
2021-10-26 22:28:37 +08:00
}