11 lines
147 B
Go
11 lines
147 B
Go
|
package testdata
|
||
|
|
||
|
import _ "embed"
|
||
|
|
||
|
var (
|
||
|
//go:embed build/Test.abi
|
||
|
TestContractABI string
|
||
|
//go:embed build/Test.bin
|
||
|
TestContractCode string
|
||
|
)
|