/* * Generated by Robotoworks Mechanoid */ package com.robotoworks.example.ghissues.ops; import com.robotoworks.mechanoid.ops.OperationProcessor; import com.robotoworks.mechanoid.ops.OperationService; import com.robotoworks.mechanoid.ops.OperationServiceConfiguration; import com.robotoworks.example.ghissues.ops.GithubProcessor; public abstract class AbstractGithubService extends OperationService { public static final OperationServiceConfiguration CONFIG = new GithubServiceConfiguration(); @Override protected OperationProcessor createProcessor() { return new GithubProcessor(this); } public AbstractGithubService(boolean enableLogging) { super(enableLogging); } }