refactor: create interface for store

This commit is contained in:
Stevan Freeborn
2025-05-28 21:59:50 -05:00
parent 887b95f798
commit 6479531126
5 changed files with 22 additions and 5 deletions
@@ -0,0 +1,5 @@
namespace StevesBot.Webhook.YouTube;
internal interface ILastPostedStreamStore : IStore<string>
{
}