mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
924 B
Swift
32 lines
924 B
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
import GRDB
|
|
import SessionUtilitiesKit
|
|
|
|
public enum SNSnodeKit: MigratableTarget { // Just to make the external API nice
|
|
public static func migrations(_ db: Database) -> TargetMigrations {
|
|
return TargetMigrations(
|
|
identifier: .snodeKit,
|
|
migrations: [
|
|
[
|
|
_001_InitialSetupMigration.self,
|
|
_002_SetupStandardJobs.self
|
|
],
|
|
[
|
|
_003_YDBToGRDBMigration.self
|
|
],
|
|
[
|
|
_004_FlagMessageHashAsDeletedOrInvalid.self
|
|
],
|
|
[] // Add job priorities
|
|
]
|
|
)
|
|
}
|
|
|
|
public static func configure() {
|
|
// Configure the job executors
|
|
JobRunner.add(executor: GetSnodePoolJob.self, for: .getSnodePool)
|
|
}
|
|
}
|