Update build tags to support future Go versions

Modified the build tags to exclude Go 1.20 and above instead of targeting only Go 1.19. This change ensures the code is compatible with future versions of Go by not restricting it to a specific minor version.
This commit is contained in:
Winni Neessen 2024-09-27 10:52:30 +02:00
parent 2084526c77
commit fec2f2075a
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -2,8 +2,8 @@
//
// SPDX-License-Identifier: MIT
//go:build go1.19 && !go1.20
// +build go1.19,!go1.20
//go:build !go1.20
// +build !go1.20
package mail