Skip to content

Commit

Permalink
Rename project to mmdbmeld
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed Dec 1, 2023
1 parent 22bb8da commit a3ef6fb
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Binaries
geoip-builder
mmdb-check
mmdbmeld
mmdbcheck

# Input
input/**.csv
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Follow instructions here: <https://go.dev/dl/>

__Step 1: Compile__

$ go build -C cmd/geoip-builder
$ go build -C cmd/mmdb-check
$ go build -C cmd/mmdbmeld
$ go build -C cmd/mmdbcheck

__Step 2: Download geoip data sources__

Expand All @@ -19,7 +19,7 @@ _Default sources are CC0 and provided by <https://github.com/sapics/ip-location-

__Step 3: Build your MMDBs__

$ ./cmd/geoip-builder/geoip-builder config-example.yml
$ ./cmd/mmdbmeld/mmdbmeld config-example.yml

==========
building My IPv4 GeoIP DB
Expand Down Expand Up @@ -54,8 +54,8 @@ __Step 3: Build your MMDBs__

__Step 4: Check your MMDBs__

$ ./cmd/mmdb-check/mmdb-check all output/geoip-v4.mmdb
$ ./cmd/mmdb-check/mmdb-check all output/geoip-v6.mmdb
$ ./cmd/mmdbcheck/mmdbcheck all output/geoip-v4.mmdb
$ ./cmd/mmdbcheck/mmdbcheck all output/geoip-v6.mmdb

[...]

Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package geoipbuilder
package mmdbmeld

import (
"os"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/safing/geoip-builder
module github.com/safing/mmdbmeld

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion source.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package geoipbuilder
package mmdbmeld

import (
"encoding/hex"
Expand Down
2 changes: 1 addition & 1 deletion source_csv.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package geoipbuilder
package mmdbmeld

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion source_ipfire.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package geoipbuilder
package mmdbmeld

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion source_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package geoipbuilder
package mmdbmeld

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion writer.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package geoipbuilder
package mmdbmeld

import (
"fmt"
Expand Down

0 comments on commit a3ef6fb

Please sign in to comment.