Move waku_message to dedicated folder

This commit is contained in:
Franck Royer 2021-07-05 11:10:31 +10:00
parent c3b726cb99
commit 7b5c8d6094
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { expect } from 'chai';
import fc from 'fast-check';
import { WakuMessage } from './waku_message';
import { WakuMessage } from './index';
describe('Waku Message', function () {
it('Waku message round trip binary serialization', function () {

View File

@ -2,7 +2,7 @@
import { Reader } from 'protobufjs/minimal';
// Protecting the user from protobuf oddities
import * as proto from '../proto/waku/v2/message';
import * as proto from '../../proto/waku/v2/message';
export const DefaultContentTopic = '/waku/2/default-content/proto';
const DefaultVersion = 0;