Skip to content
Snippets Groups Projects
Select Git revision
  • 81f5904eb9c95de392f532fa1140970ea53c74fb
  • master default protected
  • Jakub/rootless-CI
  • xx-4078/defaults
  • hotfix/nullableStake
  • november-commitments
  • new-cli
  • dev
  • jonah/rest
  • jonah/cli
  • v1.0-cli
11 results

server.go

Blame
  • Fact.swift 301 B
    public struct Fact: Equatable {
      public init(
        fact: String,
        type: Int
      ) {
        self.fact = fact
        self.type = type
      }
    
      public var fact: String
      public var type: Int
    }
    
    extension Fact: Codable {
      enum CodingKeys: String, CodingKey {
        case fact = "Fact"
        case type = "Type"
      }
    }