mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-19 20:26:26 +08:00
10 lines
181 B
Go
10 lines
181 B
Go
package server
|
|
|
|
import (
|
|
"github.com/Xhofe/alist/drivers"
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func GetDrivers(ctx *fiber.Ctx) error {
|
|
return SuccessResp(ctx, drivers.GetDrivers())
|
|
} |