fix: formatting code using swiftlint and added env example
This commit is contained in:
parent
a11d671942
commit
d1d0292045
6 changed files with 18 additions and 14 deletions
1
.env.example
Normal file
1
.env.example
Normal file
|
@ -0,0 +1 @@
|
|||
TG_BOT_API=""
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -6,3 +6,6 @@ DerivedData/
|
|||
.swiftpm/configuration/registries.json
|
||||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
|
||||
.netrc
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
|
2
.mise.toml
Normal file
2
.mise.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[tools]
|
||||
swiftlint = "latest"
|
|
@ -3,13 +3,12 @@
|
|||
|
||||
import PackageDescription
|
||||
|
||||
|
||||
var packageDependencies: [Package.Dependency] = [
|
||||
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.57.0")),
|
||||
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.57.0"))
|
||||
]
|
||||
|
||||
var targetDependencies: [PackageDescription.Target.Dependency] = [
|
||||
.product(name: "Vapor", package: "vapor"),
|
||||
.product(name: "Vapor", package: "vapor")
|
||||
]
|
||||
|
||||
packageDependencies.append(.package(url: "https://github.com/nerzh/swift-telegram-sdk", .upToNextMajor(from: "3.0.3")))
|
||||
|
@ -24,6 +23,6 @@ let package = Package(
|
|||
.executableTarget(
|
||||
name: "TelegramModeratorBot",
|
||||
dependencies: targetDependencies
|
||||
),
|
||||
)
|
||||
]
|
||||
)
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/*
|
||||
import Vapor
|
||||
|
||||
|
|
Loading…
Reference in a new issue