MCPcopy Index your code
hub / github.com/Linen-dev/linen.dev / removeCommunity

Function removeCommunity

packages/queue/src/tasks/remove-community.ts:8–14  ·  view source on GitHub ↗
(
  payload: { accountId: string },
  helpers: JobHelpers
)

Source from the content-addressed store, hash-verified

6import { Logger } from '../helpers/logger';
7
8export const removeCommunity = async (
9 payload: { accountId: string },
10 helpers: JobHelpers
11) => {
12 const logger = new Logger(helpers.logger);
13 await task(logger, payload);
14};
15
16async function task(logger: Logger, payload: { accountId: string }) {
17 logger.info(payload);

Callers

nothing calls this directly

Calls 1

taskFunction · 0.70

Tested by

no test coverage detected