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