|  | @@ -1,15 +1,15 @@
 | 
	
		
			
				|  |  |  import { existsSync, readFileSync, renameSync } from "fs";
 | 
	
		
			
				|  |  | -import { ReactionType, ReactionEmote } from "./entity/ReactionEmote";
 | 
	
		
			
				|  |  |  import { getRepository, Repository } from "typeorm";
 | 
	
		
			
				|  |  | -import { KnownUser, User, UserRole } from "./entity/KnownUser";
 | 
	
		
			
				|  |  |  import { Dictionary } from "lodash";
 | 
	
		
			
				|  |  | -import { Guide, GuideKeyword, GuideType } from "./entity/Guide";
 | 
	
		
			
				|  |  | -import { Quote } from "./entity/Quote";
 | 
	
		
			
				|  |  | -import { MessageReaction } from "./entity/MessageReaction";
 | 
	
		
			
				|  |  | -import { FaceCaptionMessage, FaceCaptionType } from "./entity/FaceCaptionMessage";
 | 
	
		
			
				|  |  | -import { PostedForumNewsItem } from "./entity/PostedForumsNewsItem";
 | 
	
		
			
				|  |  | -import { KnownChannel } from "./entity/KnownChannel";
 | 
	
		
			
				|  |  | -import { DeadChatReply } from "./entity/DeadChatReply";
 | 
	
		
			
				|  |  | +import { KnownUser, User, UserRole } from "@db/entity/KnownUser";
 | 
	
		
			
				|  |  | +import { ReactionType, ReactionEmote } from "@db/entity/ReactionEmote";
 | 
	
		
			
				|  |  | +import { Guide, GuideKeyword, GuideType } from "@db/entity/Guide";
 | 
	
		
			
				|  |  | +import { Quote } from "@db/entity/Quote";
 | 
	
		
			
				|  |  | +import { MessageReaction } from "@db/entity/MessageReaction";
 | 
	
		
			
				|  |  | +import { FaceCaptionMessage, FaceCaptionType } from "@db/entity/FaceCaptionMessage";
 | 
	
		
			
				|  |  | +import { PostedForumNewsItem } from "@db/entity/PostedForumsNewsItem";
 | 
	
		
			
				|  |  | +import { KnownChannel } from "@db/entity/KnownChannel";
 | 
	
		
			
				|  |  | +import { DeadChatReply } from "@db/entity/DeadChatReply";
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  type EmoteTable = { [reactionType: string]: string[] };
 | 
	
		
			
				|  |  |  
 |