-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
1,238 additions
and
1,072 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
with-expecter: true | ||
packages: | ||
github.com/xmtp/xmtp-node-go/pkg/proto/mls/api/v1: | ||
config: | ||
dir: ./pkg/mocks | ||
outpkg: mocks | ||
interfaces: | ||
MlsApi_SubscribeGroupMessagesServer: | ||
config: | ||
MlsApi_SubscribeWelcomeMessagesServer: | ||
config: | ||
github.com/xmtp/xmtp-node-go/pkg/mlsvalidate: | ||
config: | ||
dir: ./pkg/mocks | ||
outpkg: mocks | ||
interfaces: | ||
MLSValidationService: | ||
config: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ if ! which golangci-lint &>/dev/null; then brew install golangci-lint; fi | |
if ! which shellcheck &>/dev/null; then brew install shellcheck; fi | ||
if ! which protoc &>/dev/null; then brew install protobuf; fi | ||
if ! which protoc-gen-go &>/dev/null; then go install google.golang.org/protobuf/cmd/protoc-gen-go@latest; fi | ||
if ! which mockgen &>/dev/null || [ `mockgen --version` != "v0.4.0" ]; then go install go.uber.org/mock/[email protected]; fi | ||
if ! which mockery &>/dev/null; then brew install mockery; fi | ||
if ! which protolint &>/dev/null; then go install github.com/yoheimuta/protolint/cmd/protolint@latest; fi | ||
|
||
dev/generate | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
SET statement_timeout = 0; | ||
|
||
--bun:split | ||
DROP TABLE IF EXISTS installations, group_messages, welcome_messages, inbox_log, address_log; | ||
|
||
--bun:split | ||
DROP TYPE IF EXISTS inbox_filter; | ||
|
6 changes: 5 additions & 1 deletion
6
.../mls/20240109001927_add-messages.down.sql → ...s/mls/20240528181851_init-schema.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
SET statement_timeout = 0; | ||
|
||
--bun:split | ||
DROP TABLE IF EXISTS messages; | ||
|
||
SELECT 1 | ||
|
||
--bun:split | ||
|
||
SELECT 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.