16 lines
305 B
Swift
16 lines
305 B
Swift
// swift-tools-version:5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "notification-service",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "NotificationService",
|
|
path: "Sources/NotificationService"
|
|
)
|
|
]
|
|
)
|