Skip to content

Commit 2a275b8

Browse files
committed
Initial commit
0 parents  commit 2a275b8

31 files changed

+3750
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
psql-streamer
2+
vendor*

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: go
2+
3+
go:
4+
- 1.12.x

Gopkg.lock

Lines changed: 293 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Gopkg.toml example
2+
#
3+
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
4+
# for detailed Gopkg.toml documentation.
5+
#
6+
# required = ["github.com/user/thing/cmd/thing"]
7+
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
8+
#
9+
# [[constraint]]
10+
# name = "github.com/user/project"
11+
# version = "1.0.0"
12+
#
13+
# [[constraint]]
14+
# name = "github.com/user/project2"
15+
# branch = "dev"
16+
# source = "github.com/myfork/project2"
17+
#
18+
# [[override]]
19+
# name = "github.com/x/y"
20+
# version = "2.4.0"
21+
#
22+
# [prune]
23+
# non-go = false
24+
# go-tests = true
25+
# unused-packages = true
26+
27+
28+
[[constraint]]
29+
branch = "master"
30+
name = "github.com/blind-oracle/pgoutput"
31+
32+
[[constraint]]
33+
name = "github.com/coreos/bbolt"
34+
version = "1.3.2"
35+
36+
[[constraint]]
37+
name = "github.com/jackc/pgx"
38+
version = "3.3.0"
39+
40+
[[constraint]]
41+
name = "github.com/prometheus/client_golang"
42+
version = "0.9.2"
43+
44+
[[constraint]]
45+
name = "github.com/satori/go.uuid"
46+
version = "1.2.0"
47+
48+
[[constraint]]
49+
name = "github.com/segmentio/kafka-go"
50+
version = "0.2.2"
51+
52+
[[constraint]]
53+
name = "github.com/spf13/viper"
54+
version = "1.3.2"
55+
56+
[[constraint]]
57+
name = "github.com/stretchr/testify"
58+
version = "1.3.0"
59+
60+
[[constraint]]
61+
name = "google.golang.org/grpc"
62+
version = "1.20.1"
63+
64+
[prune]
65+
go-tests = true
66+
unused-packages = true

0 commit comments

Comments
 (0)