Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
/ launch-swift Public archive

Wrapper for socket activation on macOS.

License

Notifications You must be signed in to change notification settings

x13a/launch-swift

Repository files navigation

launch-swift

Wrapper for socket activation on macOS.

Examle

To activate socket with test name:

import LaunchSocket

func main() throws {
    let fds = try LaunchSocket.activate("test").get()
    print(fds)
}

main()