-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9d8032
commit bd0c366
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
package flags | ||
|
||
type ServiceInit struct { | ||
Name string `name:"n" description:"Name of plugin" default:"example_plugin"` | ||
Description string `name:"d" description:"Description of plugin" default:"Example plugin"` | ||
PackageName string `name:"p" description:"Package name for plugin" default:""` | ||
Name string `name:"n" description:"Name of service" default:"example_service"` | ||
Description string `name:"d" description:"Description of service" default:"Example service"` | ||
PackageName string `name:"p" description:"Package name for service" default:""` | ||
OutputDir string `name:"o" description:"Output directory" default:"."` | ||
Quiet bool `name:"q" description:"Suppress output to console"` | ||
Author string `name:"a" description:"Author of plugin" default:""` | ||
Version string `name:"v" description:"Version of plugin" default:""` | ||
Website string `name:"w" description:"Website of plugin" default:""` | ||
Repository string `name:"r" description:"Repository of plugin" default:""` | ||
License string `name:"l" description:"License of plugin" default:""` | ||
Author string `name:"a" description:"Author of service" default:""` | ||
Version string `name:"v" description:"Version of service" default:""` | ||
Website string `name:"w" description:"Website of service" default:""` | ||
Repository string `name:"r" description:"Repository of service" default:""` | ||
License string `name:"l" description:"License of service" default:""` | ||
} |