Discover Packages
github.com/kaeawc/krit
internal
migration
package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: May 8, 2026
License: MIT
Opens a new window with license information.
Imports: 8
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Entry struct {
Symbol string `yaml:"symbol" json:"symbol"`
Replacement string `yaml:"replacement" json:"replacement"`
Reason string `yaml:"reason" json:"reason"`
}
type Map struct {
Library string `yaml:"library" json:"library"`
Migrations []Migration `yaml:"migrations" json:"migrations"`
}
type Migration struct {
From string `yaml:"from" json:"from"`
To string `yaml:"to" json:"to"`
Symbols []Entry `yaml:"symbols" json:"symbols"`
}
type Report struct {
Library string `json:"library"`
From string `json:"from"`
To string `json:"to"`
Suggestions []Suggestion `json:"suggestions"`
}
type Suggestion struct {
File string `json:"file"`
Line int `json:"line"`
Column int `json:"column"`
Symbol string `json:"symbol"`
Current string `json:"current"`
Suggested string `json:"suggested"`
Reason string `json:"reason"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.