Description: Drop_example
--- a/examples/readme_example.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package main
-
-import (
-	"github.com/voxelbrain/goptions"
-	"os"
-	"time"
-)
-
-func main() {
-	options := struct {
-		Server   string        `goptions:"-s, --server, obligatory, description='Server to connect to'"`
-		Password string        `goptions:"-p, --password, description='Don\\'t prompt for password'"`
-		Timeout  time.Duration `goptions:"-t, --timeout, description='Connection timeout in seconds'"`
-		Help     goptions.Help `goptions:"-h, --help, description='Show this help'"`
-
-		goptions.Verbs
-		Execute struct {
-			Command string   `goptions:"--command, mutexgroup='input', description='Command to exectute', obligatory"`
-			Script  *os.File `goptions:"--script, mutexgroup='input', description='Script to exectute', rdonly"`
-		} `goptions:"execute"`
-		Delete struct {
-			Path  string `goptions:"-n, --name, obligatory, description='Name of the entity to be deleted'"`
-			Force bool   `goptions:"-f, --force, description='Force removal'"`
-		} `goptions:"delete"`
-	}{ // Default values goes here
-		Timeout: 10 * time.Second,
-	}
-	goptions.ParseAndFail(&options)
-}
