2019-11-28 23:48:11 -05:00
|
|
|
"""
|
2020-09-24 19:02:12 -04:00
|
|
|
Information about callsigns for the prefixes command in hamcog.
|
2019-11-28 23:48:11 -05:00
|
|
|
---
|
2020-01-06 23:27:48 -05:00
|
|
|
Copyright (C) 2019-2020 Abigail Gold, 0x5c
|
2019-11-28 23:48:11 -05:00
|
|
|
|
2020-01-31 06:50:50 -05:00
|
|
|
This file is part of discord-qrmbot and is released under the terms of
|
|
|
|
the GNU General Public License, version 2.
|
2019-11-28 23:48:11 -05:00
|
|
|
"""
|
|
|
|
|
2020-09-24 19:02:12 -04:00
|
|
|
from .callsigninfos import (us, ca)
|
|
|
|
from common import CallsignInfoData
|
2020-01-31 06:50:50 -05:00
|
|
|
|
2019-11-28 23:48:11 -05:00
|
|
|
|
|
|
|
# format: country: (title, description, text)
|
2020-09-24 19:02:12 -04:00
|
|
|
options = {
|
|
|
|
"us": CallsignInfoData([us.title, us.desc, us.calls, us.emoji]),
|
|
|
|
"ca": CallsignInfoData([ca.title, ca.desc, ca.calls, ca.emoji]),
|
|
|
|
}
|