mirror of
https://github.com/status-im/status-keycard-go.git
synced 2025-01-18 18:31:56 +00:00
9 lines
142 B
Go
9 lines
142 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func l(format string, args ...interface{}) {
|
||
|
f := fmt.Sprintf("keycard: %s\n", format)
|
||
|
fmt.Printf(f, args...)
|
||
|
}
|