2021-12-07 15:56:43 +08:00
|
|
|
package controllers
|
2021-10-26 22:28:37 +08:00
|
|
|
|
|
|
|
import (
|
2021-12-06 15:55:05 +08:00
|
|
|
"github.com/Xhofe/alist/drivers/base"
|
2021-12-07 15:56:43 +08:00
|
|
|
"github.com/Xhofe/alist/server/common"
|
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-07 15:56:43 +08:00
|
|
|
common.SuccessResp(c, base.GetDrivers())
|
2021-10-26 22:28:37 +08:00
|
|
|
}
|