remove dist a41aa63f
Antonio Ivanovski · 2026-02-15 18:47 2 file(s) · +2 −2
README.md +1 −1
73 73
```typescript src/index.ts
74 74
import { Hono } from 'hono'
75 75
import { cors } from 'hono/cors'
76 -
import type { ApiResponse } from 'shared/dist'
76 +
import type { ApiResponse } from 'shared'
77 77
78 78
const app = new Hono()
79 79
server/src/index.ts +1 −1
1 1
import { Hono } from 'hono'
2 2
import { cors } from 'hono/cors'
3 -
import type { ApiResponse } from 'shared/dist'
3 +
import type { ApiResponse } from 'shared'
4 4
5 5
const app = new Hono()
6 6