package
0.0.0-20241210101123-2fc3053d2f16
Repository: https://github.com/bincooo/go-annotation.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# Functions
AbsolutePath checks if filePath exists in module and provides absolute path to the file For example: Module.Root - /home/<some-home>/go/src/github.com/bincooo/go-annotation Module.Files - [internal/module/lookup.go...] filePath - github.com/bincooo/go-annotation/internal/module/module.go return - /home/<some-home>/go/src/github.com/bincooo/go-annotation/internal/module/module.go.
FilesInDir finds all files in a particular directory for Module For example: Module.Root - /home/<some-home>/go/src/github.com/bincooo/go-annotation Module.Files - [internal/lookup/imports.go...] dir - internal/lookup Then the function returns all files in internal/lookup dir with no prefixes:
"internal/lookup/imports.go" "internal/lookup/imports_test.go" "internal/lookup/types.go" "internal/lookup/types_test.go".
FilesInPackage finds all files in importPath for Module For example: Module.Root - /home/<some-home>/go/src/github.com/bincooo/go-annotation Module.Files - [internal/module/lookup.go...] importPath - github.com/bincooo/go-annotation/internal/module Then the function returns all files in internal/module dir with package prefix:
"github.com/bincooo/go-annotation/internal/module/load.go" "github.com/bincooo/go-annotation/internal/module/interface.go" "github.com/bincooo/go-annotation/internal/module/interface_test.go" "github.com/bincooo/go-annotation/internal/module/lookup.go" "github.com/bincooo/go-annotation/internal/module/module.go".
No description provided by the author
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author