mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2025-10-21 20:10:34 +00:00
14 lines
285 B
Go
Generated
14 lines
285 B
Go
Generated
package tree_sitter_bruno
|
|
|
|
// #cgo CFLAGS: -std=c11 -fPIC
|
|
// #include "../../src/parser.c"
|
|
// #include "../../src/scanner.c"
|
|
import "C"
|
|
|
|
import "unsafe"
|
|
|
|
// Get the tree-sitter Language for this grammar.
|
|
func Language() unsafe.Pointer {
|
|
return unsafe.Pointer(C.tree_sitter_bruno())
|
|
}
|