Merge 'v1.4.0-rc4' into master

This commit is contained in:
Fernandez Ludovic
2017-10-02 17:18:24 +02:00
54 changed files with 2903 additions and 541 deletions

14
server/uuid/uuid.go Normal file
View File

@@ -0,0 +1,14 @@
package uuid
import guuid "github.com/satori/go.uuid"
var uuid string
func init() {
uuid = guuid.NewV4().String()
}
// Get the instance UUID
func Get() string {
return uuid
}