mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
7224cfc578
* Upgrade xorm to v1.2.2 * Change the Engine interface to match xorm v1.2.2
10 lines
337 B
Go
Vendored
10 lines
337 B
Go
Vendored
package vm
|
|
|
|
import (
|
|
// HACK: compile order
|
|
// `vm`, `vm_indent`, `vm_color`, `vm_color_indent` packages uses a lot of memory to compile,
|
|
// so forcibly make dependencies and avoid compiling in concurrent.
|
|
// dependency order: vm => vm_indent => vm_color => vm_color_indent
|
|
_ "github.com/goccy/go-json/internal/encoder/vm_indent"
|
|
)
|