mirror of https://github.com/gwuhaolin/livego.git
33 changed files with 232 additions and 108 deletions
@ -1,3 +1,4 @@ |
|||||||
# Created by .ignore support plugin (hsz.mobi) |
# Created by .ignore support plugin (hsz.mobi) |
||||||
.idea |
.idea |
||||||
dist |
dist |
||||||
|
vendor/ |
||||||
|
@ -0,0 +1,53 @@ |
|||||||
|
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. |
||||||
|
|
||||||
|
|
||||||
|
[[projects]] |
||||||
|
digest = "1:ffe9824d294da03b391f44e1ae8281281b4afc1bdaa9588c9097785e3af10cec" |
||||||
|
name = "github.com/davecgh/go-spew" |
||||||
|
packages = ["spew"] |
||||||
|
pruneopts = "UT" |
||||||
|
revision = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" |
||||||
|
version = "v1.1.1" |
||||||
|
|
||||||
|
[[projects]] |
||||||
|
branch = "master" |
||||||
|
digest = "1:f7aa53146bf79462509d4ce136826ebbd64907e4679e1b04e62758da6b68e589" |
||||||
|
name = "github.com/orcaman/concurrent-map" |
||||||
|
packages = ["."] |
||||||
|
pruneopts = "UT" |
||||||
|
revision = "b28018939af9022337862b94a463abb18abb3e0e" |
||||||
|
|
||||||
|
[[projects]] |
||||||
|
digest = "1:0028cb19b2e4c3112225cd871870f2d9cf49b9b4276531f03438a88e94be86fe" |
||||||
|
name = "github.com/pmezard/go-difflib" |
||||||
|
packages = ["difflib"] |
||||||
|
pruneopts = "UT" |
||||||
|
revision = "792786c7400a136282c1664665ae0a8db921c6c2" |
||||||
|
version = "v1.0.0" |
||||||
|
|
||||||
|
[[projects]] |
||||||
|
digest = "1:274f67cb6fed9588ea2521ecdac05a6d62a8c51c074c1fccc6a49a40ba80e925" |
||||||
|
name = "github.com/satori/go.uuid" |
||||||
|
packages = ["."] |
||||||
|
pruneopts = "UT" |
||||||
|
revision = "f58768cc1a7a7e77a3bd49e98cdd21419399b6a3" |
||||||
|
version = "v1.2.0" |
||||||
|
|
||||||
|
[[projects]] |
||||||
|
digest = "1:18752d0b95816a1b777505a97f71c7467a8445b8ffb55631a7bf779f6ba4fa83" |
||||||
|
name = "github.com/stretchr/testify" |
||||||
|
packages = ["assert"] |
||||||
|
pruneopts = "UT" |
||||||
|
revision = "f35b8ab0b5a2cef36673838d662e249dd9c94686" |
||||||
|
version = "v1.2.2" |
||||||
|
|
||||||
|
[solve-meta] |
||||||
|
analyzer-name = "dep" |
||||||
|
analyzer-version = 1 |
||||||
|
input-imports = [ |
||||||
|
"github.com/orcaman/concurrent-map", |
||||||
|
"github.com/satori/go.uuid", |
||||||
|
"github.com/stretchr/testify/assert", |
||||||
|
] |
||||||
|
solver-name = "gps-cdcl" |
||||||
|
solver-version = 1 |
@ -0,0 +1,42 @@ |
|||||||
|
# Gopkg.toml example |
||||||
|
# |
||||||
|
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html |
||||||
|
# for detailed Gopkg.toml documentation. |
||||||
|
# |
||||||
|
# required = ["github.com/user/thing/cmd/thing"] |
||||||
|
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] |
||||||
|
# |
||||||
|
# [[constraint]] |
||||||
|
# name = "github.com/user/project" |
||||||
|
# version = "1.0.0" |
||||||
|
# |
||||||
|
# [[constraint]] |
||||||
|
# name = "github.com/user/project2" |
||||||
|
# branch = "dev" |
||||||
|
# source = "github.com/myfork/project2" |
||||||
|
# |
||||||
|
# [[override]] |
||||||
|
# name = "github.com/x/y" |
||||||
|
# version = "2.4.0" |
||||||
|
# |
||||||
|
# [prune] |
||||||
|
# non-go = false |
||||||
|
# go-tests = true |
||||||
|
# unused-packages = true |
||||||
|
|
||||||
|
|
||||||
|
[[constraint]] |
||||||
|
branch = "master" |
||||||
|
name = "github.com/orcaman/concurrent-map" |
||||||
|
|
||||||
|
[[constraint]] |
||||||
|
name = "github.com/satori/go.uuid" |
||||||
|
version = "1.2.0" |
||||||
|
|
||||||
|
[[constraint]] |
||||||
|
name = "github.com/stretchr/testify" |
||||||
|
version = "1.2.2" |
||||||
|
|
||||||
|
[prune] |
||||||
|
go-tests = true |
||||||
|
unused-packages = true |
Loading…
Reference in new issue