Categorygithub.com/Mrzrb/goerr
modulepackage
0.2.8
Repository: https://github.com/mrzrb/goerr.git
Documentation: pkg.go.dev

# README

Goal

use annotation to generate code

Autowire

This is contains some annotation

// This autowireMete annotation set base info that generate code
type AutowireMete struct {
    // file to write
	File    string `annotation:"name=file"`
    // todo
	Scope   string `annotation:"name=scope"`
    // gen code pkg
	Package string `annotation:"name=package"`
}

type Component struct {
	// Component Name
	Name string `annotation:"name=name"`
}

type Autowired struct {
	// Inject Component's name
	Name string `annotation:"name=name"`
}

type Factory struct {
	Name string `annotation:"name=name"`
}

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author