Battle-Cattle/BCUK-Bot-3

View on GitHub
src/main/java/com/expiredminotaur/bcukbot/twitch/command/chat/TwitchCommand.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.expiredminotaur.bcukbot.twitch.command.chat;

import com.expiredminotaur.bcukbot.command.Command;
import reactor.core.publisher.Mono;

import java.util.function.Function;

public class TwitchCommand extends Command<TwitchCommandEvent>
{
    public TwitchCommand(Function<TwitchCommandEvent, Mono<Void>> task, Function<TwitchCommandEvent, Boolean> permission)
    {
        super(task, permission);
    }
}