Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(storage): rename to storage-engine #402

Merged
merged 7 commits into from
Nov 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 2 additions & 2 deletions demo/storage/index.ts → demo/storage-engine/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {AlwatrStorage} from '@alwatr/storage';
import {AlwatrStorage} from '../packages/core/storage-engine/src/storage';

import type {DocumentObject} from '@alwatr/storage';
import type {DocumentObject} from '../packages/core/storage-engine/src/storage';

interface User extends DocumentObject {
fname: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {AlwatrStorageProvider} from '@alwatr/storage/provider.js';
import {AlwatrStorageProvider} from '../../storage-engine/src/provider.js';
Fixed Show fixed Hide fixed

import {config} from './config.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/service/storage-server/src/route/patch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {nanoServer} from '../lib/nano-server.js';
import {storageProvider} from '../lib/storage-provider.js';

import type {AlwatrConnection} from '@alwatr/nano-server';
import type {DocumentObject} from '@alwatr/storage';
import type {DocumentObject} from '../../storage-engine/src/storage';
Fixed Show fixed Hide fixed

nanoServer.route('PATCH', 'all', updateDocument);

Expand Down