blob: b73a542ee88d2f4ef87fe0b9d90ac906d07ba982 [file]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package recovery
import (
"infra/cros/recovery/internal/localtlw"
"infra/cros/recovery/tlw"
)
// NewLocalTLWAccess provides instance of local implementation of TLW Access.
func NewLocalTLWAccess(ufs localtlw.UFSClient, csac localtlw.CSAClient) (tlw.Access, error) {
return localtlw.New(ufs, csac)
}