├── .gitattributes ├── .gitignore ├── AkkaWebApi.sln ├── AkkaWebApi.sln.GhostDoc.xml ├── AkkaWebApi ├── Actors │ ├── BaseApi.cs │ └── ServerActor.cs ├── AkkaWebApi.csproj ├── Api │ └── HelloApi.cs ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Responce.cs └── packages.config ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/.gitignore -------------------------------------------------------------------------------- /AkkaWebApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi.sln -------------------------------------------------------------------------------- /AkkaWebApi.sln.GhostDoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi.sln.GhostDoc.xml -------------------------------------------------------------------------------- /AkkaWebApi/Actors/BaseApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/Actors/BaseApi.cs -------------------------------------------------------------------------------- /AkkaWebApi/Actors/ServerActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/Actors/ServerActor.cs -------------------------------------------------------------------------------- /AkkaWebApi/AkkaWebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/AkkaWebApi.csproj -------------------------------------------------------------------------------- /AkkaWebApi/Api/HelloApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/Api/HelloApi.cs -------------------------------------------------------------------------------- /AkkaWebApi/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/App.config -------------------------------------------------------------------------------- /AkkaWebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/Program.cs -------------------------------------------------------------------------------- /AkkaWebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AkkaWebApi/Responce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/Responce.cs -------------------------------------------------------------------------------- /AkkaWebApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/AkkaWebApi/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shersh/AkkaNetRest/HEAD/README.md --------------------------------------------------------------------------------