Skip to content

Commit

Permalink
introduce new function
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 18, 2024
1 parent 5c2cf5f commit 52cc72f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
8 changes: 8 additions & 0 deletions dummy-module/.changeset/v0.4.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: 5 additions & 2 deletions dummy-module/cmd/main.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package main

import "fmt"
import (
"fmt"
dummy_module "github.com/smartcontractkit/chainlink-testing-framework/dummy-module"
)

func FuncTest() error {
return nil
}

func main() {
if err := FuncTest(); err != nil {
if err := dummy_module.FuncTest(); err != nil {
panic(err)
}
fmt.Println("Hello!")
Expand Down
5 changes: 5 additions & 0 deletions dummy-module/funcs.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package dummy_module

func FuncTest() error {
return nil
}

0 comments on commit 52cc72f

Please sign in to comment.