mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-16 12:07:11 +08:00
16 lines
480 B
Go
16 lines
480 B
Go
package corehttp
|
|
|
|
// TODO: move to IPNS
|
|
const WebUIPath = "/ipfs/QmXX7YRpU7nNBKfw75VG7Y1c3GwpSAGHRev67XVPgZFv9R"
|
|
|
|
// this is a list of all past webUI paths.
|
|
var WebUIPaths = []string{
|
|
WebUIPath,
|
|
"/ipfs/QmXdu7HWdV6CUaUabd9q2ZeA4iHZLVyDRj3Gi4dsJsWjbr",
|
|
"/ipfs/QmaaqrHyAQm7gALkRW8DcfGX3u8q9rWKnxEMmf7m9z515w",
|
|
"/ipfs/QmSHDxWsMPuJQKWmVA1rB5a3NX2Eme5fPqNb63qwaqiqSp",
|
|
"/ipfs/QmctngrQAt9fjpQUZr7Bx3BsXUcif52eZGTizWhvcShsjz",
|
|
}
|
|
|
|
var WebUIOption = RedirectOption("webui", WebUIPath)
|