···1313import { Relationships } from "./routes/relationships.ts";
1414import { Interactions } from "./routes/interactions.ts";
1515import { Reposts } from "./routes/reposts.ts";
1616+import { Sounds } from "./routes/sounds.ts";
1617import { Stories } from "./routes/stories.ts";
1718import { Sync } from "./routes/sync.ts";
1819import { Threads } from "./routes/threads.ts";
···4445 public relationships: Relationships;
4546 public interactions: Interactions;
4647 public reposts: Reposts;
4848+ public sounds: Sounds;
4749 public stories: Stories;
4850 public sync: Sync;
4951 public threads: Threads;
···7173 this.relationships = new Relationships(db);
7274 this.interactions = new Interactions(db);
7375 this.reposts = new Reposts(db);
7676+ this.sounds = new Sounds(db);
7477 this.stories = new Stories(db);
7578 this.sync = new Sync(db);
7679 this.threads = new Threads(db);