mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
13 lines
196 B
Go
13 lines
196 B
Go
|
|
package testpackage
|
||
|
|
|
||
|
|
import (
|
||
|
|
"crypto" // for test
|
||
|
|
"fmt"
|
||
|
|
|
||
|
|
"github.com/fleetdm/fleet/v4/server/archtest/test_files/dependency"
|
||
|
|
)
|
||
|
|
|
||
|
|
func What(_ crypto.Decrypter) {
|
||
|
|
fmt.Println(dependency.Item)
|
||
|
|
}
|