Skip to content

Instantly share code, notes, and snippets.

View craigajohnson's full-sized avatar

Craig Johnson craigajohnson

View GitHub Profile
@craigajohnson
craigajohnson / DepExample.cs
Created March 15, 2023 22:45
Dependency flow example (without DI container)
namespace Root
{
using Host;
internal class Program
{
static async Task Main(string[] args)
{
var host = new AppHost();