Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 05d1359

Browse files
refactor(server): rename types.ts
1 parent f938e62 commit 05d1359

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

server/providers/uploads/dummy/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Provider } from '../../../uploads/types'
1+
import { Provider } from '../../../uploads/provider'
22

33
export default class DummyProvider implements Provider {
44
upload = async (): Promise<string> => ''

server/providers/uploads/gcs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Storage, Bucket, File } from '@google-cloud/storage'
22
import crypto from 'crypto'
3-
import { Provider } from '../../../uploads/types'
3+
import { Provider } from '../../../uploads/provider'
44

55
interface GcsProviderOptions {
66
credentials: Record<string, unknown>;

server/providers/uploads/local/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Provider } from '../../../uploads/types'
1+
import { Provider } from '../../../uploads/provider'
22
import process from 'process'
33
import path from 'path'
44
import fs from 'fs'
File renamed without changes.

0 commit comments

Comments
 (0)