Skip to content

Commit

Permalink
breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 18, 2024
1 parent 7feb484 commit 59baa65
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dummy-module/.changeset/v0.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Dummy modules is live!

Features:

- 1
- 2
- 3
- Breaking change
7 changes: 7 additions & 0 deletions dummy-module/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ package main

import "fmt"

func FuncTest(a int) error {
return nil
}

func main() {
if err := FuncTest(0); err != nil {
panic(err)
}
fmt.Println("Hello!")
}

0 comments on commit 59baa65

Please sign in to comment.