asset_ios.go 261 B

12345678910111213
  1. // Copyright 2024 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package asset
  5. import (
  6. "os"
  7. )
  8. func openAsset(name string) (File, error) {
  9. return os.Open(name)
  10. }