mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-14 11:04:18 +01:00
10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
import { NSecSigner } from '@nostrify/nostrify';
|
|
import { Conf } from '@/config.ts';
|
|
|
|
/** Sign events as the Ditto server. */
|
|
export class AdminSigner extends NSecSigner {
|
|
constructor() {
|
|
super(Conf.seckey);
|
|
}
|
|
}
|