Sign in

Raul Hernandez / base_project_ckbtc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • base_project_ckbtc
  • src
  • app
  • app.service.ts
  • First commit
    993002d4
    Angel Caceres authored
    2023-11-22 07:44:43 -0600  
    Browse Files »
app.service.ts 142 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8
import { Injectable } from '@nestjs/common';

@Injectable()
export class AppService {
  getHello(): string {
    return 'Hello World!';
  }
}