import { HttpService } from './http.service';

export class GastrofyService {
  _GFHttp:any;

  constructor( config?:any ) {
    this._GFHttp = new HttpService( { ...{
      host: 'https://www.gastrofy.se/api',
    }, ...config || {} } );
  }

  getRecipeMeta( ids:string ) {
    return this._GFHttp.get( 'recipe/'+ids+'/meta' );
  }
}
