mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
14 lines
149 B
Go
14 lines
149 B
Go
package driver
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Unmount(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"Err": "",
|
|
})
|
|
}
|