This commit is contained in:
Ken-Håvard Lieng 2018-11-11 07:08:53 +01:00
parent 48f59604a6
commit 374604fae2
2 changed files with 6 additions and 7 deletions

View File

@ -18,9 +18,9 @@ There is a few different ways of getting it:
### 1. Binary ### 1. Binary
- **[Windows (x64)](https://github.com/khlieng/dispatch/releases/download/v0.4/dispatch_windows_amd64.zip)** - **[Windows (x64)](https://github.com/khlieng/dispatch/releases/download/v0.5/dispatch_windows_amd64.zip)**
- **[OS X (x64)](https://github.com/khlieng/dispatch/releases/download/v0.4/dispatch_darwin_amd64.zip)** - **[OS X (x64)](https://github.com/khlieng/dispatch/releases/download/v0.5/dispatch_darwin_amd64.zip)**
- **[Linux (x64)](https://github.com/khlieng/dispatch/releases/download/v0.4/dispatch_linux_amd64.tar.gz)** - **[Linux (x64)](https://github.com/khlieng/dispatch/releases/download/v0.5/dispatch_linux_amd64.tar.gz)**
- [Other versions](https://github.com/khlieng/dispatch/releases) - [Other versions](https://github.com/khlieng/dispatch/releases)
### 2. Go ### 2. Go

View File

@ -8,14 +8,13 @@ import (
"time" "time"
"github.com/fsnotify/fsnotify" "github.com/fsnotify/fsnotify"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/khlieng/dispatch/assets" "github.com/khlieng/dispatch/assets"
"github.com/khlieng/dispatch/server" "github.com/khlieng/dispatch/server"
"github.com/khlieng/dispatch/storage" "github.com/khlieng/dispatch/storage"
"github.com/khlieng/dispatch/storage/bleve" "github.com/khlieng/dispatch/storage/bleve"
"github.com/khlieng/dispatch/storage/boltdb" "github.com/khlieng/dispatch/storage/boltdb"
"github.com/spf13/cobra"
"github.com/spf13/viper"
) )
const logo = ` const logo = `
@ -25,7 +24,7 @@ const logo = `
| |_| || |\__ \| |_) || (_| || |_| (__ | | | | | |_| || |\__ \| |_) || (_| || |_| (__ | | | |
|____/ |_||___/| .__/ \__,_| \__|\___||_| |_| |____/ |_||___/| .__/ \__,_| \__|\___||_| |_|
|_| |_|
v0.4 v0.5
` `
var rootCmd = &cobra.Command{ var rootCmd = &cobra.Command{