Unverified Commit b03181c1 authored by Hong Minhee's avatar Hong Minhee
Browse files

Fix lint warnings

parent 7a2ac161
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
import { Handler, PageProps } from "$fresh/server.ts";
import { Head } from "$fresh/runtime.ts";
import { respondWithObjectIfAcceptable } from "@fedify/fedify/federation";
import Comment from "../../components/Comment.tsx";
import Post from "../../components/Post.tsx";
import { federation } from "../../federation/mod.ts";
import { Blog, getBlog } from "../../models/blog.ts";
import {
  type Comment as CommentModel,
  getComments,
} from "../../models/comment.ts";
import {
  getPost,
  type Post as PostModel,
  toArticle,
} from "../../models/post.ts";
import { getPost, type Post as PostModel } from "../../models/post.ts";
import { countFollowers } from "../../models/follower.ts";

export interface PostPageData {