Skip to content

Instantly share code, notes, and snippets.

@tawman
Last active September 23, 2025 01:54
Show Gist options
  • Save tawman/1653561 to your computer and use it in GitHub Desktop.
Save tawman/1653561 to your computer and use it in GitHub Desktop.
Implement IToddWood Blog - https://www.wooodcp.com
using System;
using System.Collections.Generic;
namespace WoodConsultingPartners
{
public interface IToddWood
{
IEnumerable<Result> Work<T>(T challenge);
IEnumerable<Memory> Life(Action action);
Post Blog<T>(Result knowledge, Memory experience, T content);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment