mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
[skip ci] More work on parsing - seasons to fix still and use banned words
This commit is contained in:
12
src/producer/Features/Wordlists/IWordCollections.cs
Normal file
12
src/producer/Features/Wordlists/IWordCollections.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Producer.Features.Wordlists;
|
||||
|
||||
public interface IWordCollections
|
||||
{
|
||||
HashSet<string> AdultWords { get; }
|
||||
|
||||
HashSet<string> AdultCompoundPhrases { get; }
|
||||
|
||||
HashSet<string> CommonWords { get; }
|
||||
|
||||
Task LoadAsync();
|
||||
}
|
||||
Reference in New Issue
Block a user