13 lines
136 B
Go
13 lines
136 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func (c *Client) Start() error {
|
|
processId := os.Getpid()
|
|
fmt.Println(processId)
|
|
return nil
|
|
}
|