Skip to content

Commit

Permalink
Merge pull request #351 from jaredwray/updating-store-file-paths
Browse files Browse the repository at this point in the history
updating store file paths
  • Loading branch information
jaredwray authored Aug 26, 2024
2 parents 32cddcf + bc32b52 commit e280ec0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/store/airhorn-store.ts → src/airhorn-store.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type AirhornProviderType } from '../provider-type.js';
import { type AirhornProviderType } from './provider-type.js';

export type AirhornSubscription = {
id: string;
Expand Down
2 changes: 1 addition & 1 deletion src/airhorn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ export class Airhorn {
export { AirhornProviderType } from './provider-type.js';
export {
AirhornStore, type AirhornNotification, type AirhornStoreProvider, type AirhornNotificationStatus,
} from './store/airhorn-store.js';
} from './airhorn-store.js';
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { type AirhornStoreProvider } from '../airhorn.js';
import {
type AirhornSubscription, type AirhornNotification, type AirhornNotificationStatus, type CreateAirhornNotification,
type CreateAirhornSubscription,
} from './airhorn-store.js';
} from '../airhorn-store.js';

export type MongoStoreProviderOptions = {
uri?: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {test, describe, expect} from 'vitest';
import {type CreateAirhornNotification, AirhornStore, AirhornNotificationStatus} from '../../src/store/airhorn-store.js';
import { MongoStoreProvider } from '../../src/store/mongo-store-provider.js';
import { AirhornProviderType } from '../../src/provider-type.js';
import {type CreateAirhornNotification, AirhornStore, AirhornNotificationStatus} from '../src/airhorn-store.js';
import { MongoStoreProvider } from '../src/store-providers/mongo.js';
import { AirhornProviderType } from '../src/provider-type.js';

const mongoUri = 'mongodb://localhost:27017/airhorn';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {test, describe, expect} from 'vitest';
import { ObjectId } from 'mongodb';
import {MongoStoreProvider} from '../../src/store/mongo-store-provider.js';
import { AirhornNotificationStatus } from '../../src/store/airhorn-store.js';
import {MongoStoreProvider} from '../../src/store-providers/mongo.js';
import { AirhornNotificationStatus } from '../../src/airhorn-store.js';
import { AirhornProviderType } from '../../src/provider-type.js';

const uri = 'mongodb://localhost:27017';
Expand Down

0 comments on commit e280ec0

Please sign in to comment.