github.com/apptainer/singularity@v3.1.1+incompatible/internal/pkg/runtime/engines/oci/rpc/args.go (about)

     1  // Copyright (c) 2018, Sylabs Inc. All rights reserved.
     2  // This software is licensed under a 3-clause BSD license. Please consult the
     3  // LICENSE.md file distributed with the sources of this project regarding your
     4  // rights to use or distribute this software.
     5  
     6  package rpc
     7  
     8  // SymlinkArgs defines the arguments to symlink.
     9  type SymlinkArgs struct {
    10  	Old string
    11  	New string
    12  }
    13  
    14  // TouchArgs defines the arguments to touch.
    15  type TouchArgs struct {
    16  	Path string
    17  }