com.github.masahitojp.botan.brain.LocalBrain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of botan-core Show documentation
Show all versions of botan-core Show documentation
tiny chat bot framework for Java SE 8.(like a Hubot)
package com.github.masahitojp.botan.brain;
import lombok.extern.slf4j.Slf4j;
import java.util.concurrent.ConcurrentHashMap;
@Slf4j
public class LocalBrain implements BotanBrain {
private final ConcurrentHashMap data;
public final ConcurrentHashMap getData() {
return data;
}
public LocalBrain() {
data = new ConcurrentHashMap<>();
}
}