mirror of
https://github.com/abh/geodns.git
synced 2026-04-27 03:45:53 +03:00
[GH-ISSUE #96] Split all continents in regions #212
Labels
No labels
bug
bug
enhancement
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/geodns#212
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @daknob on GitHub (Aug 8, 2016).
Original GitHub issue: https://github.com/abh/geodns/issues/96
The United States of America is split in three parts, namely
us-west,us-central, andus-east. It could be beneficial to add this support in the continent level for all continents. For example,europe-westcan have Portugal, Spain, etc.I can do this by editing the
/countries/regiongroups.gowhich I think will enable this functionality. Is this feature wanted? Should I implement this and send a Pull Request?@cricsus commented on GitHub (Dec 22, 2018):
that'd also require to change the
if country != "us"toif country != "us" && region != "europe", I think, right? I'm not sure whether that will work, though, as I never dealt with anything written in golang before