mirror of
https://github.com/AlistGo/alist.git
synced 2025-04-29 00:34:03 +08:00
11 lines
217 B
Go
11 lines
217 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/Xhofe/alist/drivers/base"
|
|
"github.com/Xhofe/alist/server/common"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func GetDrivers(c *gin.Context) {
|
|
common.SuccessResp(c, base.GetDrivers())
|
|
} |