code-graph-cli 3.0.3

Code intelligence engine for TypeScript/JavaScript/Rust/Python/Go — query the dependency graph instead of reading source files.
package main

import (
	"fmt"
	"github.com/test/goproject/handlers"
)

//go:generate stringer -type=Color

type Color int

const (
	Red Color = iota
	Green
	Blue
)

var AppName = "TestApp"

func main() {
	fmt.Println("Hello")
	handlers.Handle()
}

func init() {
	fmt.Println("init")
}