mirror of
https://github.com/standardnotes/server
synced 2026-07-30 20:16:37 -04:00
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
import { Result, UseCaseInterface } from '@standardnotes/domain-core'
|
|
|
|
import { RemoveUserEventsDTO } from './RemoveUserEventsDTO'
|
|
|
|
export class RemoveUserEvents implements UseCaseInterface<void> {
|
|
async execute(_dto: RemoveUserEventsDTO): Promise<Result<void>> {
|
|
throw new Error('Method not implemented.')
|
|
}
|
|
}
|