Skip to content

Commit

Permalink
REmove junk
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Bourget committed Sep 13, 2024
1 parent a0cacb2 commit faa8522
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions types.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package codegen

import (
"fmt"

"github.com/streamingfast/substreams-codegen/loop"
pbconvo "github.com/streamingfast/substreams-codegen/pb/sf/codegen/conversation/v1"
)
Expand Down Expand Up @@ -55,23 +53,3 @@ type MsgGenerateProgress struct {

Continue bool
}

func ReturnBuildMessage(isMinimal bool) string {
// TODO: this isn't a `Build` message output, it's just a Generate final message.
// It's also not standardized.
var minimalStr string

if isMinimal {
minimalStr = "* Inspect and edit the the `./src/lib.rs` file\n"
}

return fmt.Sprintf(
"Your Substreams project is ready! Follow the next steps to start streaming:\n\n"+
"%s"+
"\n substreams build\n"+
" substreams auth\n"+
" substreams gui\n\n"+
" substreams codegen subgraph\n"+
" substreams codegen sql\n",
minimalStr)
}

0 comments on commit faa8522

Please sign in to comment.