10 lines
185 B
Go
10 lines
185 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.GetDriverNames())
|
|
} |