move rootfs to its own package

This commit is contained in:
2021-05-24 00:11:57 +03:00
parent ce445b19b7
commit 3279b52973
4 changed files with 44 additions and 39 deletions

8
rootfs/BUILD Normal file
View File

@@ -0,0 +1,8 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "rootfs_lib",
srcs = ["rootfs.go"],
importpath = "github.com/motiejus/code/undocker/rootfs",
visibility = ["//visibility:public"],
)