We must please make vet

main
Jef Roosens 2022-02-02 13:34:28 +01:00
parent a29592ef36
commit eb57febdd3
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
4 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,6 @@ pipeline:
checksum:
- md5
- sha256
prerelease: true
title: ${CI_COMMIT_TAG}
when:
event: tag

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased](https://git.rustybever.be/Chewing_Bever/vieter)
* Improved logging
## [0.1.0-rc.1](https://git.rustybever.be/Chewing_Bever/vieter/src/tag/0.1.0-rc.1)
### Added

View File

@ -178,6 +178,8 @@ fn format_entry(key string, value string) string {
return '\n%$key%\n$value\n'
}
// full_name returns the properly formatted name for the package, including
// version & architecture
pub fn (pkg &Pkg) full_name() string {
p := pkg.info
return '$p.name-$p.version-$p.arch'

View File

@ -25,6 +25,8 @@ fn is_pkg_name(s string) bool {
return s.contains('.pkg')
}
// healthcheck just returns a string, but can be used to quickly check if the
// server is still responsive.
['/health'; get]
pub fn (mut app App) healthcheck() web.Result {
return app.text('Healthy')