mirror of
https://gitee.com/johng/gf
synced 2026-06-30 11:05:11 +08:00
14 lines
177 B
Go
14 lines
177 B
Go
// 向指定进程发送进程消息。
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/os/gproc"
|
|
)
|
|
|
|
func main() {
|
|
err := gproc.Send(22988, []byte{30})
|
|
fmt.Println(err)
|
|
}
|