org.finos.springbot.example.rooms.RoomsApp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rooms-bot Show documentation
Show all versions of rooms-bot Show documentation
Allows you to send a message to any room the bot is in
package org.finos.springbot.example.rooms;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class RoomsApp
{
public static void main( String[] args )
{
SpringApplication.run(new Class[] {RoomsApp.class}, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy