File: drop_example.patch

package info (click to toggle)
golang-github-voxelbrain-goptions 2.5.11-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 168 kB
  • sloc: makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,186 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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)
-}