Skip to content

Commit

Permalink
move import for include vendor.go files inside include/vendor.go (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavoCaso authored Oct 15, 2021
1 parent db84fcc commit f75f288
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ import "C"
import (
_ "rogchap.com/v8go/deps/darwin_x86_64"
_ "rogchap.com/v8go/deps/include"
_ "rogchap.com/v8go/deps/include/cppgc"
_ "rogchap.com/v8go/deps/include/libplatform"
_ "rogchap.com/v8go/deps/linux_x86_64"
_ "rogchap.com/v8go/deps/windows_x86_64"
)
5 changes: 5 additions & 0 deletions deps/include/vendor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Package include is required to provide support for vendoring modules
// DO NOT REMOVE
package include

import (
_ "rogchap.com/v8go/deps/include/cppgc"
_ "rogchap.com/v8go/deps/include/libplatform"
)

0 comments on commit f75f288

Please sign in to comment.