roc-streaming / roc-go

Golang bindings for Roc Toolkit.
https://roc-streaming.org
MIT License
22 stars 10 forks source link

Use stringer for all enums #84

Closed gavv closed 1 year ago

gavv commented 1 year ago

We have a lot of enums in config.go and log.go, and it would be convenient if they all had String() method that returned enum's symbolic representation. This can be easily achieved using stringer tool.

Steps:

fastbyt3 commented 1 year ago

@gavv can I try this?

gavv commented 1 year ago

Sure, thank you!

gavv commented 1 year ago

Landed