Skip to content

Instantly share code, notes, and snippets.

@henryruhs
Last active April 19, 2022 12:31
Show Gist options
  • Save henryruhs/71669e5d40fd9d796917e0ba1f6ac905 to your computer and use it in GitHub Desktop.
Save henryruhs/71669e5d40fd9d796917e0ba1f6ac905 to your computer and use it in GitHub Desktop.
import environment from '../../../environments/environment';
export default class ExampleService
{
read(id)
{
const url = new URL(environment.apiRoutes.example + '/' + id, environment.apiUrl);
return fetch(url.toString());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment