mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
11 lines
202 B
Go
11 lines
202 B
Go
|
|
package dependency
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
import "github.com/fleetdm/fleet/v4/server/archtest/test_files/transative"
|
||
|
|
|
||
|
|
const Item = "depend on me"
|
||
|
|
|
||
|
|
func SomeMethod() {
|
||
|
|
fmt.Println(transative.NowYouDependOnMe)
|
||
|
|
}
|