feat: remove builder interface

This commit is contained in:
Prad Nukala 2024-09-05 17:12:10 -04:00
parent 1ec797e36f
commit 3fd84dbdda

View File

@ -4,5 +4,5 @@ type Builder interface {
Build() error Build() error
} }
func New() Builder { func New() {
} }