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