diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,6 +3,7 @@ package cloudflare import ( "go.wit.com/gui/gui" + "go.wit.com/gui/gadgets" ) var cloudflareURL string = "https://api.cloudflare.com/client/v4/zones/" @@ -27,7 +28,7 @@ var CFdialog dialogT type dialogT struct { rootGui *gui.Node // the root node - mainWindow *gui.Node // the window node + mainWindow *gadgets.BasicWindow // the window node zonedrop *gui.Node // the drop down menu of zones domainWidget *gui.Node @@ -38,7 +39,7 @@ type dialogT struct { loadButton *gui.Node saveButton *gui.Node - cloudflareW *gui.Node // the window node + cloudflareW *gadgets.BasicWindow // the window node cloudflareB *gui.Node // the cloudflare button TypeNode *gui.Node // CNAME, A, AAAA, ... |
