alist/server/driver.go

10 lines
163 B
Go
Raw Normal View History

2021-10-26 22:28:37 +08:00
package server
import (
"github.com/Xhofe/alist/drivers"
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) {
SuccessResp(c, drivers.GetDrivers())
2021-10-26 22:28:37 +08:00
}