import Foundation
struct ServerFeature: Stateable, Identifiable {
let xep: String
let name: String
let xmppId: String?
let description: String?
var id: String { xep }
}
//
// XEP-0001
// XMPP Extension Protocols
// Procedural
// Active
// 2016-11-16
//
//
//
// XEP-0002
// Special Interest Groups (SIGs)
// Procedural
// Active
// 2002-01-11
//
//
//
// XEP-0003
// Proxy Accept Socket Service (PASS)
// Historical
// Obsolete
// 2009-06-03
//
//
//
// XEP-0004
// Data Forms
// Standards Track
// Final
// 2007-08-13
//
//