mirror of
https://github.com/quexten/goldwarden.git
synced 2025-01-24 17:11:39 +01:00
14 lines
261 B
Go
14 lines
261 B
Go
|
//go:build linux
|
||
|
|
||
|
package autotype
|
||
|
|
||
|
import "github.com/quexten/goldwarden/autofill/autotype/uinput"
|
||
|
|
||
|
func TypeString(text string, layout string) error {
|
||
|
return uinput.TypeString(text, layout)
|
||
|
}
|
||
|
|
||
|
func Paste(layout string) error {
|
||
|
return uinput.Paste(layout)
|
||
|
}
|