alist/server/driver.go

10 lines
163 B
Go
Raw Normal View History

2021-10-26 14:28:37 +00:00
package server
import (
"github.com/Xhofe/alist/drivers"
2021-11-13 07:53:26 +00:00
"github.com/gin-gonic/gin"
2021-10-26 14:28:37 +00:00
)
2021-11-13 07:53:26 +00:00
func GetDrivers(c *gin.Context) {
SuccessResp(c, drivers.GetDrivers())
2021-10-26 14:28:37 +00:00
}