Fixes package naming issue from copied packages

This commit is contained in:
sloum 2021-05-08 14:58:45 -07:00
parent 8a22a34853
commit 7732381a33
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// This will build for osx without a build tag based on the filename // This will build for osx without a build tag based on the filename
package http package main
import "os/exec" import "os/exec"

View File

@ -1,6 +1,6 @@
// +build !darwin,!windows // +build !darwin,!windows
package http package main
import ( import (
"fmt" "fmt"

View File

@ -1,6 +1,6 @@
// This will only build for windows based on the filename // This will only build for windows based on the filename
// no build tag required // no build tag required
package http package main
import "os/exec" import "os/exec"