com.beimin.eveapi.parser.character.CharMarketOrdersParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eveapi Show documentation
Show all versions of eveapi Show documentation
Parsers for the eve online api
package com.beimin.eveapi.parser.character;
import com.beimin.eveapi.parser.ApiPath;
import com.beimin.eveapi.parser.shared.AbstractMarketOrdersParser;
public class CharMarketOrdersParser extends AbstractMarketOrdersParser {
public CharMarketOrdersParser() {
super(ApiPath.CHARACTER);
}
}