-
Notifications
You must be signed in to change notification settings - Fork 0
Contribute
Flamingo has a lot of features that makes it fun and easy to build telegram bots in c#, but this features are extremely extendable! ( using provided basics ); Filters for example, base class for filters is implemented that helps creating custom filters quickly! but flamingo may have more useful filters ready to use ( for each type of update ), so the devs don’t have to make them by their own.
Here is a list of things that can be extended to provide a quicker setup for devs:
Help flamingo to carry much more filters ready to use!
base classes are under:
namespace Flamingo.FiltersFilter for each update type is under a separated directory. Flamingo/Filters/MessageFilters for message updates as an example.
see MessageFilters for an example of "how to create custom filters."
filters as attributes are extremely needed because of their usage in Avd handlers.
They’re under:
namespace Flamingo.Attributes.FiltersJust like normal filters, filter attributes are under a separated directory for each update type. Flamingo/Attributes/Filters/Messages/ for message updates.
see Filter Attributes For Messages as an example of creating filter attributes.
You can create custom await-able handlers just like AwaitInComingText
…