tests: add tests for library

This commit is contained in:
Stevan Freeborn
2025-05-29 22:41:53 -05:00
parent ce45893caa
commit 0d31f12012
11 changed files with 155 additions and 18 deletions
@@ -1,5 +1,7 @@
namespace StevesBot.Webhook.YouTube;
internal interface ILastPostedStreamStore : IStore<string>
internal interface ILastPostedStreamStore
{
void SetValue(string value);
bool HasValue(string value);
}