Last active
February 12, 2018 09:54
-
-
Save miroslavradojevic/e5ce112c1fe3a34dde8e654c1dbe5d7c to your computer and use it in GitHub Desktop.
Method to configure the Startup class for initializing the self host.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Startup { | |
public void Configuration(IAppBuilder app) { | |
//... | |
// configure web api | |
// configure file server | |
//... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment