feat: add basic UI for block explorer

This commit is contained in:
Prad Nukala
2024-09-05 17:11:52 -04:00
parent 73997ad670
commit 1ec797e36f
4 changed files with 421 additions and 54 deletions
+8
View File
@@ -0,0 +1,8 @@
package builder
type Builder interface {
Build() error
}
func New() Builder {
}