https://github.com/octaltree/linearf-my-flavors
https://github.com/octaltree/linearf-my-flavors
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/octaltree/linearf-my-flavors
- Owner: octaltree
- License: mit
- Created: 2021-09-07T10:56:57.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-04T14:04:45.000Z (almost 3 years ago)
- Last Synced: 2024-10-18T08:17:05.174Z (8 months ago)
- Language: Rust
- Size: 54.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My linearf sources
A collection of my linarf sources, filters, converters, actions, and views.
## Example
```lua
local linearf = require('linearf')linearf.recipe.sources = {
{name = "identity", path = "flavors_plain::Identity"},
{name = "command", path = "flavors_tokio::Command"}
}
linearf.recipe.matchers = {
{name = "identity", path = "flavors_plain::Identity"},
{name = "substring", path = "flavors_plain::Substring"}
}
linearf.recipe.converters = {
{name = "format_line", path = "flavors_plain::FormatLine"}
}
```