mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 19:07:48 +08:00
13 lines
309 B
Go
13 lines
309 B
Go
package corehttp
|
|
|
|
// TODO: move to IPNS
|
|
const WebUIPath = "/ipfs/QmSHDxWsMPuJQKWmVA1rB5a3NX2Eme5fPqNb63qwaqiqSp"
|
|
|
|
// this is a list of all past webUI paths.
|
|
var WebUIPaths = []string{
|
|
WebUIPath,
|
|
"/ipfs/QmctngrQAt9fjpQUZr7Bx3BsXUcif52eZGTizWhvcShsjz",
|
|
}
|
|
|
|
var WebUIOption = RedirectOption("webui", WebUIPath)
|