From 5a979c6ecd57e87a0b007bdcf67683d08f7ddf08 Mon Sep 17 00:00:00 2001 From: Henrique Dias <hacdias@gmail.com> Date: Wed, 11 Dec 2019 17:54:27 +0100 Subject: [PATCH] Update main.go --- docs/examples/go-ipfs-as-a-library/main.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/examples/go-ipfs-as-a-library/main.go b/docs/examples/go-ipfs-as-a-library/main.go index 48b680845..55eb157f6 100644 --- a/docs/examples/go-ipfs-as-a-library/main.go +++ b/docs/examples/go-ipfs-as-a-library/main.go @@ -57,10 +57,6 @@ func createTempRepo(ctx context.Context) (string, error) { if err != nil { return "", err } - - // Add your custom configuration to the repository config - // For example, you can enable sharding with: - // cfg.Experimental.ShardingEnabled = true // Create the repo with the config err = fsrepo.Init(repoPath, cfg) -- GitLab