All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.harium.suneidesis.chat.output.Output Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package com.harium.suneidesis.chat.output;

public interface Output {
    default void print(String sentence) {
        print(sentence, null);
    }

    void print(String sentence, OutputContext context);

    void produceFile(String path, String description);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy