From 117f1b50b4730499c822eff93308b076fd3d0af8 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 18 Feb 2024 11:02:11 +0100 Subject: [PATCH] internal/config/builder.go: bind start-block, end-block flags to config --- internal/config/builder.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/internal/config/builder.go b/internal/config/builder.go index b9c0e75..35f0056 100644 --- a/internal/config/builder.go +++ b/internal/config/builder.go @@ -21,7 +21,10 @@ type Builder struct { func NewBuilder() *Builder { return &Builder{ - binds: map[string]string{}, + binds: map[string]string{ + "ship.start_block_num": "start-block", + "ship.end_block_num": "end-block", + }, } }