mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
a16e77c39e
all done by @marcelofabri, originally in #1073
14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
//
|
|
// Version.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Marcelo Fabri on 12/27/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
public struct Version {
|
|
public let value: String
|
|
|
|
public static let current = Version(value: "__VERSION__")
|
|
}
|