From a496cf1b03878ad0bb7f2693c5293ae96fac77e0 Mon Sep 17 00:00:00 2001 From: Danilo Pantani Date: Thu, 23 Jan 2025 14:46:08 -0300 Subject: [PATCH] add name to module buf yaml config --- ignite/pkg/cosmosbuf/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ignite/pkg/cosmosbuf/config.go b/ignite/pkg/cosmosbuf/config.go index 01887d1542..86d35ef25e 100644 --- a/ignite/pkg/cosmosbuf/config.go +++ b/ignite/pkg/cosmosbuf/config.go @@ -20,6 +20,7 @@ type ( // Module represents the buf.yaml module. Module struct { Path string `yaml:"path"` + Name string `yaml:"name"` } )