Rename loopback to firehose

This commit is contained in:
Alex Gleason 2023-08-14 11:02:09 -05:00
parent 988a4e8c28
commit 1b8bb78717
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import { type Context, cors, type Handler, Hono, type HonoEnv, logger, type MiddlewareHandler } from '@/deps.ts';
import { type Event } from '@/event.ts';
import '@/loopback.ts';
import '@/firehose.ts';
import { actorController } from './controllers/activitypub/actor.ts';
import {

View File

@ -20,9 +20,9 @@ relay.subscribe(
undefined,
);
/** Handle events through the loopback pipeline. */
/** Handle events through the firehose pipeline. */
async function handleEvent(event: SignedEvent): Promise<void> {
console.info('loopback event:', event.id);
console.info('firehose event:', event.id);
trackHashtags(event);