FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DevChatterBot/src/DevChatter.Bot.Web/Program.cs at master · DevChatter/DevChatterBot · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DevChatter
/
DevChatterBot
Public
Notifications
You must be signed in to change notification settings
Fork
24
Star
54
Code
Issues
36
Pull requests
8
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
DevChatterBot
/
src
/
DevChatter.Bot.Web
/
Program.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (15 loc) · 421 Bytes
Breadcrumbs
DevChatterBot
/
src
/
DevChatter.Bot.Web
/
Program.cs
Copy path
File metadata and controls
17 lines (15 loc) · 421 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using
Microsoft
.
AspNetCore
;
using
Microsoft
.
AspNetCore
.
Hosting
;
namespace
DevChatter
.
Bot
.
Web
{
public
class
Program
{
public
static
void
Main
(
string
[
]
args
)
{
CreateWebHostBuilder
(
args
)
.
Build
(
)
.
Run
(
)
;
}
public
static
IWebHostBuilder
CreateWebHostBuilder
(
string
[
]
args
)
=>
WebHost
.
CreateDefaultBuilder
(
args
)
.
UseStartup
<
Startup
>
(
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL