Building this application requires gradle.
Once gradle is installed, clone this repository and run the following command within the repository directory:
$ gradle shadowJar
To run the application, simply run the following command:
$ java -jar build/libs/twitter-kata.jar
Post: <user> -> <message>
Read: <user>
Follow: <user> follows <user>
Wall: <user> wall
Exit: exit
alice -> hello world!
bob -> good morning everyone.
alice follows bob
alice wall
// output
bob - good morning everyone (just now)
alice - hello world! (2 minutes ago)