From 8312839aa37130587131872b5ee3aa5efdd05b5f Mon Sep 17 00:00:00 2001 From: nicetomytyuk Date: Mon, 22 Jul 2024 12:22:08 +0200 Subject: [PATCH] fix: Resolve wrong paths in server imports --- src/server/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/index.ts b/src/server/index.ts index e67d237..33acc10 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -1,7 +1,7 @@ -import { Bot } from "#root/bot/index.js"; -import { config } from "#root/config.js"; import { fastify } from "fastify"; import { webhookCallback } from "grammy"; +import { Bot } from "../bot/index.js"; +import { config } from "../config.js"; export const createServer = async (bot: Bot) => { const server = fastify();