import { Service } from 'meocord/decorator'

@Service()
export class {{className}}Service {
  async handleInteraction() {
    // TODO: Implement service logic
    return '{{className}}Service is working!';
  }
}
