Skip to content

Commit 3ac7695

Browse files
committed
make createConfig function public
1 parent 6f2d68c commit 3ac7695

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tvm/tvmExecutor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ func SetVerbosityLevel(level int) error {
198198
return nil
199199
}
200200

201-
func createConfig(configRaw string) (*Config, error) {
201+
func CreateConfig(configRaw string) (*Config, error) {
202202
config := C.emulator_config_create(C.CString(configRaw))
203203
if config == nil {
204204
return nil, fmt.Errorf("failed to create config")

0 commit comments

Comments
 (0)