Skip to content

Commit

Permalink
Move version 2 to LibreTaxi repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ro31337 committed Feb 26, 2020
1 parent e3691ff commit 1d8269f
Show file tree
Hide file tree
Showing 31 changed files with 3,046 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
vendor/

.idea/

libretaxi
libretaxi.yml

migration/
215 changes: 215 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 54 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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


[prune]
go-tests = true
unused-packages = true

[[constraint]]
name = "github.com/spf13/viper"
version = "1.6.2"

[[constraint]]
name = "github.com/go-telegram-bot-api/telegram-bot-api"
version = "4.6.4"

[[constraint]]
name = "github.com/lib/pq"
version = "1.3.0"

[[constraint]]
branch = "master"
name = "github.com/streadway/amqp"

[[constraint]]
name = "go.uber.org/ratelimit"
version = "0.1.0"

[[constraint]]
name = "github.com/leonelquinteros/gotext"
version = "1.4.0"
Loading

0 comments on commit 1d8269f

Please sign in to comment.