mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
13 lines
238 B
Go
13 lines
238 B
Go
package config
|
|
|
|
import (
|
|
"github.com/0xJacky/Nginx-UI/model"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/uozi-tech/cosy"
|
|
)
|
|
|
|
func GetConfigHistory(c *gin.Context) {
|
|
cosy.Core[model.ConfigBackup](c).
|
|
SetEqual("filepath").
|
|
PagingList()
|
|
}
|