| 1234567891011121314151617181920212223242526 | package certificateimport (	"github.com/0xJacky/Nginx-UI/internal/cert/dns"	"github.com/gin-gonic/gin"	"net/http")func GetDNSProvidersList(c *gin.Context) {	c.JSON(http.StatusOK, dns.GetProvidersList())}func GetDNSProvider(c *gin.Context) {	code := c.Param("code")	provider, ok := dns.GetProvider(code)	if !ok {		c.JSON(http.StatusNotFound, gin.H{			"message": "provider not found",		})		return	}	c.JSON(http.StatusOK, provider)}
 |