Skip to content

Commit

Permalink
refactor: move src/utils to src/server/utils (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe authored May 11, 2024
1 parent 5287f7d commit c437a73
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import type { Env, NotFoundHandler, ErrorHandler, MiddlewareHandler } from 'hono
import { createMiddleware } from 'hono/factory'
import type { H } from 'hono/types'
import { IMPORTING_ISLANDS_ID } from '../constants.js'
import { contextStorage } from './context-storage.js'
import {
filePathToPath,
groupByDirectory,
listByDirectory,
sortDirectoriesByDepth,
} from '../utils/file.js'
import { contextStorage } from './context-storage.js'
} from './utils/file.js'

const NOTFOUND_FILENAME = '_404.tsx'
const ERROR_FILENAME = '_error.tsx'
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit c437a73

Please sign in to comment.