mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-23 16:00:52 +00:00
11 lines
226 B
Go
11 lines
226 B
Go
package v2
|
|
|
|
import (
|
|
"github.com/1Panel-dev/1Panel/agent/app/api/v2/helper"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (b *BaseApi) TerminalCapabilities(c *gin.Context) {
|
|
helper.SuccessWithData(c, gin.H{"apiKeyLeaseVersion": 1})
|
|
}
|