From faf677bc48968da1e9f64f7ea02b7c099749c0b4 Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Wed, 19 Jun 2024 02:57:06 +0900 Subject: [PATCH] fix: update go:build lines --- helpers_unix.go | 2 +- helpers_windows.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers_unix.go b/helpers_unix.go index 6ceaa355..23391b7a 100644 --- a/helpers_unix.go +++ b/helpers_unix.go @@ -1,4 +1,4 @@ -// +build !windows +//go:build !windows package main diff --git a/helpers_windows.go b/helpers_windows.go index f6cfbfd1..ba056cc2 100644 --- a/helpers_windows.go +++ b/helpers_windows.go @@ -1,4 +1,4 @@ -// +build windows +//go:build windows package main