gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

hack.go (337B)


      1 package vm
      2 
      3 import (
      4 	// HACK: compile order
      5 	// `vm`, `vm_indent`, `vm_color`, `vm_color_indent` packages uses a lot of memory to compile,
      6 	// so forcibly make dependencies and avoid compiling in concurrent.
      7 	// dependency order: vm => vm_indent => vm_color => vm_color_indent
      8 	_ "github.com/goccy/go-json/internal/encoder/vm_indent"
      9 )