relay_event_schema/protocol/constants.rs
1/// A list of all valid [`platform`](super::Event::platform) identifiers.
2pub const VALID_PLATFORMS: &[&str] = &[
3 "as3",
4 "c",
5 "cfml",
6 "cocoa",
7 "csharp",
8 "elixir",
9 "go",
10 "groovy",
11 "haskell",
12 "java",
13 "javascript",
14 "native",
15 "node",
16 "objc",
17 "other",
18 "perl",
19 "php",
20 "python",
21 "ruby",
22];
23
24/// The latest version of the protocol.
25pub const PROTOCOL_VERSION: u16 = 7;