Revert "[backend] Fix re2 imports"

This reverts commit c60414f347.
This commit is contained in:
Laura Hausmann 2023-11-22 04:52:49 +01:00
parent 6e82e18eea
commit 4bf5ea09a4
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import { MigrationInterface, QueryRunner } from "typeorm";
import RE2 from "re2";
import RE2 from "@iceshrimp/re2";
export class convertHardMutes1644010796173 implements MigrationInterface {
name = "convertHardMutes1644010796173";

View file

@ -1,4 +1,4 @@
import RE2 from "re2";
import RE2 from "@iceshrimp/re2";
import type { Note } from "@/models/entities/note.js";
import type { User } from "@/models/entities/user.js";

View file

@ -1,4 +1,4 @@
import RE2 from "re2";
import RE2 from "@iceshrimp/re2";
import * as mfm from "mfm-js";
import { publishMainStream, publishUserEvent } from "@/services/stream.js";
import acceptAllFollowRequests from "@/services/following/requests/accept-all.js";