img.ts 201 B

123456789
  1. import { PublicImageService } from '../../src/public/images/img.service'
  2. const imgService = new PublicImageService()
  3. async function run() {
  4. console.log(await imgService.get('logo.png'))
  5. }
  6. run()