async features()

in app/launch/src/micronaut/MicronautStarterSDK.js [92:99]


  async features({ type, form }) {
    const featuresUrl = this.baseUrl + `/application-types/${type}/features`
    const featuresCommand = new FeatureCommand(form, featuresUrl);
    return this._cache(
        featuresCommand.toUrl(),
        responseHandler('json')
    )
  }