Skip to content

Commit

Permalink
sth
Browse files Browse the repository at this point in the history
  • Loading branch information
mili-tan committed Sep 1, 2020
1 parent 5f9bb3b commit a12506c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Arashi.Aoi/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,14 @@ class Program
static void Main(string[] args)
{
var cmd = new CommandLineApplication
{Name = "Arashi.Aoi", Description = "ArashiDNS.Aoi - Simple Lightweight DNS over HTTPS Server"};
{
Name = "Arashi.Aoi",
Description = "ArashiDNS.Aoi - Lightweight DNS over HTTPS Server" +
Environment.NewLine +
$"Copyright (c) {DateTime.Now.Year} Milkey Tan. Code released under the Mozilla Public License 2.0" +
Environment.NewLine +
"https://github.com/mili-tan/ArashiDNS.Aoi/blob/master/CREDITS.md"
};
cmd.HelpOption("-?|-h|--help");
var ipOption = cmd.Option<string>("-l|--listen <IPEndPoint>", "Set server listening address and port <127.0.0.1:2020>",
CommandOptionType.SingleValue);
Expand Down

0 comments on commit a12506c

Please sign in to comment.