Initial commit. Playing with VK api for the bot.

This commit is contained in:
Pavel Kachalouski
2018-05-08 22:49:55 +02:00
commit 8b705c8f77
10 changed files with 205 additions and 0 deletions

18
build.sbt Normal file
View File

@@ -0,0 +1,18 @@
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.12.6",
version := "0.1.0-SNAPSHOT"
)),
name := "telegram-bot1",
libraryDependencies ++= Seq(
scalaTest % Test,
akka,
akkaHttp,
akkaStream,
vkapi
)
)