UNPKG

api-explorer

Version:

Easily create an interactive documentation for your RESTful API

10 lines (9 loc) 304 B
'use strict'; angular.module(APP_NAME_SERVICES).factory('ApiInfo', ['ResourceFactory', 'ExplorerService', function(ResourceFactory, ExplorerService) { var resourcesInfo = { name : "apiInfo", apiUrl : ExplorerService.getApiUrl() }; return ResourceFactory.createResource(resourcesInfo); }]);