package org.opendc.common.api import org.opendc.common.annotations.Endpoint /** * This class represents the `/resources` endpoint. * * @author Mateusz Kwiatkowski * * */ public class ResourceController { /** * Returns all data analytics for all experiments. */ @Endpoint("GET", "/resources") public fun getResources() { return } /** * Returns data analytics for experiment with `id`. * * */ @Endpoint("GET", "/resources") public fun getResourcesId() { return } }