switched to guider

This commit is contained in:
mohitbkl
2024-04-15 12:07:48 +03:00
parent 89a78e4ae9
commit bd65ca0a9f
69 changed files with 2947 additions and 7912 deletions

View File

@@ -0,0 +1,10 @@
# Flags
Flags is the primary way the library separates entities between different environments.
For example, some sources only give back content that has the CORS headers set to allow anyone, so that source gets the flag `CORS_ALLOWED`. Now if you set your target to `BROWSER`, sources without that flag won't even get listed.
This concept is applied in multiple away across the library.
## Flag options
- `CORS_ALLOWED` : Headers from the output streams are set to allow any origin.
- `IP_LOCKED` : The streams are locked by IP: requester and watcher must be the same.