Files
articulate-parser/internal/version/version.go
Kaj Kowalski b01260e765 Add comprehensive unit tests for services and main package
- Implement tests for the app service, including course processing from file and URI.
- Create mock implementations for CourseParser and Exporter to facilitate testing.
- Add tests for HTML cleaner service to validate HTML content cleaning functionality.
- Develop tests for the parser service, covering course fetching and loading from files.
- Introduce tests for utility functions in the main package, ensuring URI validation and string joining.
- Include benchmarks for performance evaluation of key functions.
2025-05-25 15:46:10 +02:00

16 lines
401 B
Go

// Package version provides version information for the Articulate Parser.
// It includes the current version, build time, and Git commit hash.
package version
// Version information.
var (
// Version is the current version of the application.
Version = "0.2.0"
// BuildTime is the time the binary was built.
BuildTime = "unknown"
// GitCommit is the git commit hash.
GitCommit = "unknown"
)