blob: cc35628a9ad7d7629770a8df7bff84bd4df5d44a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Example custom TLD list for hoardom
# Import with: hoardom -i docs/example-list.toml <domain>
#
# The name field is required and used to identify the list.
# Importing a list with the same name replaces the old one.
# The tlds array defines which TLDs to search.
# Order matters - domains are shown in the same order as listed here.
name = "Tech Startup"
tlds = [
"com",
"io",
"dev",
"app",
"tech",
"ai",
"co",
"net",
"org",
"sh",
]
|