Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
Raw
History Blame Contribute Delete
98 Bytes
package main
type ProcessRunner interface {
Start()
Stop()
Kill()
Done() bool
Wait() bool
}