The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
458 B
19 lines
458 B
using System; |
|
using System.Threading.Tasks; |
|
using Microsoft.Owin; |
|
using Owin; |
|
|
|
[assembly: OwinStartup(typeof(Teknik.Startup))] |
|
|
|
namespace Teknik |
|
{ |
|
public class Startup |
|
{ |
|
public void Configuration(IAppBuilder app) |
|
{ |
|
// For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=316888 |
|
// Start the SignalR Mappings |
|
app.MapSignalR(); |
|
} |
|
} |
|
}
|
|
|