first commit

master
bvn13 2019-02-17 23:41:31 +03:00
parent adf82e3350
commit ff32f3525b
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package ru.bvn13.scaproxy
import ru.bvn13.scaproxy.engine.ProxyServer
object ScaProxyRunner {
private val proxyServer: ProxyServer = new ProxyServer
def main(args: Array[String]): Unit = {
proxyServer.start
}
}

View File

@ -0,0 +1,11 @@
package ru.bvn13.scaproxy.engine
class ProxyServer {
def start = {
println("ScaProxy started")
}
}