Skip to content

Commit

Permalink
fix: Resolve wrong paths in server imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nicetomytyuk committed Jul 22, 2024
1 parent 93e609b commit 8312839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/index.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down

0 comments on commit 8312839

Please sign in to comment.