Skip to content

Commit f75f288

Browse files
authored
move import for include vendor.go files inside include/vendor.go (#196)
1 parent db84fcc commit f75f288

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cgo.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ import "C"
1919
import (
2020
_ "rogchap.com/v8go/deps/darwin_x86_64"
2121
_ "rogchap.com/v8go/deps/include"
22-
_ "rogchap.com/v8go/deps/include/cppgc"
23-
_ "rogchap.com/v8go/deps/include/libplatform"
2422
_ "rogchap.com/v8go/deps/linux_x86_64"
2523
_ "rogchap.com/v8go/deps/windows_x86_64"
2624
)

deps/include/vendor.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
// Package include is required to provide support for vendoring modules
22
// DO NOT REMOVE
33
package include
4+
5+
import (
6+
_ "rogchap.com/v8go/deps/include/cppgc"
7+
_ "rogchap.com/v8go/deps/include/libplatform"
8+
)

0 commit comments

Comments
 (0)