Skip to content

Commit

Permalink
Small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
DanteDeRuwe committed Nov 15, 2024
1 parent 9d5ff03 commit b2990af
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/Dotty.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,15 @@
}

Panel($"""
This talk is presented to you by {name}, a technical consultant,
software developer and public speaker passionate about .NET and fascinated
by software craftsmanship and architecture.
This talk is presented to you by {name}.
[gray]Technical Consultant | Software Developer | Public Speaker[/]
Passionate about .NET and fascinated by software craftsmanship and architecture.
🚀 [bold][cyan]dantederuwe.com[/][/]
""");

});
group.AddCommand("yourself", () =>
{
Expand Down Expand Up @@ -122,7 +127,7 @@ by software craftsmanship and architecture.
""");
});

group.AddCommand("timestamp", (string format = "o") => { Panel(DateTimeOffset.UtcNow.ToString(format)); });
group.AddCommand("timestamp", (string format = "o") => Panel(DateTimeOffset.UtcNow.ToString(format)));
});

app.Run();

0 comments on commit b2990af

Please sign in to comment.