21 lines
499 B
TypeScript
21 lines
499 B
TypeScript
/**
|
|
* rAuctions module — Community auctions with USDC (stub).
|
|
* TODO: Implement auction logic.
|
|
*/
|
|
|
|
import { Hono } from 'hono';
|
|
import type { RSpaceModule } from '../../shared/module';
|
|
|
|
const routes = new Hono();
|
|
|
|
routes.get('/', (c) => c.text('rAuctions — coming soon'));
|
|
|
|
export const auctionsModule: RSpaceModule = {
|
|
id: 'rauctions',
|
|
name: 'rAuctions',
|
|
icon: '🎭',
|
|
description: 'Community auctions with USDC',
|
|
routes,
|
|
scoping: { defaultScope: 'space', userConfigurable: true },
|
|
};
|