Files
gitlab.nvim/cmd/start.go
Harrison (Harry) Cramer 63fc025070 Change to HTTP Model (#5)
2023-05-19 17:28:58 -07:00

13 lines
136 B
Go

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