mirror of
https://github.com/tale/headplane.git
synced 2026-08-10 14:06:51 +00:00
4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
export function isHeadscaleServeCmd(cmdline: string): boolean {
|
|
return cmdline.includes('headscale') && cmdline.includes("serve");
|
|
}
|