gopkg.in/essentialkaos/ek.v3@v3.5.1/system/exec_windows.go (about)

     1  // +build !linux, !darwin, windows
     2  
     3  package system
     4  
     5  // ////////////////////////////////////////////////////////////////////////////////// //
     6  //                                                                                    //
     7  //                     Copyright (c) 2009-2016 Essential Kaos                         //
     8  //      Essential Kaos Open Source License <http://essentialkaos.com/ekol?en>         //
     9  //                                                                                    //
    10  // ////////////////////////////////////////////////////////////////////////////////// //
    11  
    12  // SudoExec execute some command with sudo
    13  func SudoExec(user string, args ...string) error {
    14  	return nil
    15  }
    16  
    17  // Exec execute some command
    18  func Exec(command string, args ...string) error {
    19  	return nil
    20  }
    21  
    22  // ////////////////////////////////////////////////////////////////////////////////// //