mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-31 18:08:37 +00:00
9 lines
139 B
Go
9 lines
139 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
func runDaemon(opts *daemonOptions) error {
|
|
daemonCli := NewDaemonCli()
|
|
return daemonCli.start(opts)
|
|
}
|