mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
10 lines
191 B
Go
10 lines
191 B
Go
package nginx
|
|
|
|
import (
|
|
"github.com/tufanbarisyildirim/gonginx"
|
|
)
|
|
|
|
func (c *NgxConfig) FmtCode() (fmtContent string) {
|
|
fmtContent = gonginx.DumpConfig(c.c, gonginx.IndentedStyle)
|
|
return
|
|
}
|