8 lines
129 B
Go
8 lines
129 B
Go
|
//go:build !linux
|
||
|
|
||
|
package autotype
|
||
|
|
||
|
func TypeString(text string, layout string) error {
|
||
|
return errors.New("Not implemented")
|
||
|
}
|