Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardottt committed Apr 6, 2023
1 parent 91f48be commit 84c0379
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# gonesis
Create Golang project template ready to be pushed on GitHub with a single command (Go + Genesis)
Generate Golang project template ready to be pushed on GitHub with a single command (Go + Genesis)

Installation 📡
-------
Expand Down
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ const (
Permission0755 = 0755
Permission0775 = 0775
MDBashInit = "```bash"
Banner = "gonesis v1.0.1\n\thttps://github.com/edoardottt/gonesis\n\n"
Version = "1.0.1"
Banner = "gonesis v" + Version + "\n\thttps://github.com/edoardottt/gonesis\n\n"
)

var (
Expand Down
22 changes: 22 additions & 0 deletions snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: gonesis
summary: Generate Golang project template
description: |
Generate Golang project template ready to be pushed on GitHub with a single command (Go + Genesis)
version: 1.0.1
grade: stable
base: core20

confinement: strict

apps:
gonesis:
command: bin/gonesis
plugs:
- home
- network

parts:
gonesis:
plugin: go
source-type: git
source: https://github.com/edoardottt/gonesis

0 comments on commit 84c0379

Please sign in to comment.