github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/mirror/init.go (about) 1 // Package mirror provides local mirroring and replica management 2 /* 3 * Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. 4 */ 5 package mirror 6 7 import ( 8 "github.com/NVIDIA/aistore/xact/xreg" 9 ) 10 11 func Init() { 12 xreg.RegBckXact(&mncFactory{}) 13 xreg.RegBckXact(&putFactory{}) 14 }