mirror of
https://github.com/lwch/natpass.git
synced 2024-04-21 12:41:54 +00:00
12 lines
192 B
Go
12 lines
192 B
Go
package process
|
|
|
|
import (
|
|
"image"
|
|
"time"
|
|
)
|
|
|
|
// CreateWorker create worker process
|
|
func CreateWorker(name, confDir string, showCursor bool) (*Process, error) {
|
|
return nil, ErrNotSupported
|
|
}
|