Skip to content

Instantly share code, notes, and snippets.

@buildmotion
Created May 25, 2018 14:13
Show Gist options
  • Save buildmotion/20b065e9e71110d59444540abfc03dcc to your computer and use it in GitHub Desktop.
Save buildmotion/20b065e9e71110d59444540abfc03dcc to your computer and use it in GitHub Desktop.
A new service library in Angular 6 Workspace.
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class LibOneService {
constructor() { }
SayHello(message: string): string {
return `${message}`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment