9 lines
340 B
Go
9 lines
340 B
Go
package config
|
|
|
|
// classifyLegacyPartyDocument is the bounded compatibility path for an
|
|
// unversioned party source. It intentionally retains no parsed roster data and
|
|
// must be removed once legacy campaign inputs are no longer supported.
|
|
func classifyLegacyPartyDocument() *PartyDocument {
|
|
return &PartyDocument{Mode: PartyModeLegacy}
|
|
}
|