goaction
goaction copied to clipboard
Greetings from ezactions
It looks like we both started on the same thing at about the same time. I've been hacking on ezactions for a couple of days and discovered goaction when I came to your profile page while trying to remember the name of goreadme.
I tried out goaction with a simple hello world service, and it looks good. It's very easy to get started with minimal code.
ezactions takes a little different approach by using the Action struct to set inputs and outputs instead of inspecting the code. I considered using struct tags for configuration, but I hadn't considered using flags. That's a great idea.
You might want to consider adding something like WorkflowCommander to make outputs and logging easier to use. I can make a PR if you're interested, or you can just copy the code.
It looks like we both started on the same thing at about the same time. I've been hacking on ezactions for a couple of days and discovered goaction when I came to your profile page while trying to remember the name of goreadme.
This is funny :smile:
Thanks for reaching out.
Nice idea about the go:generate go run . -generate
!
I tried out goaction with a simple hello world service, and it looks good. It's very easy to get started with minimal code.
Thanks!
ezactions takes a little different approach by using the Action struct to set inputs and outputs instead of inspecting the code. I considered using struct tags for configuration, but I hadn't considered using flags. That's a great idea.
You might want to consider adding something like WorkflowCommander to make outputs and logging easier to use. I can make a PR if you're interested, or you can just copy the code.
Defiantly! This project is still in forming stages. Trying to figure out the best API to expose. I would love to cooperate on this project, but I am afraid that this is a bit too early. In this point I'll copy the code from your project I guess :smile:
Thanks @WillAbides !