pkg.re/essentialkaos/ek.v11@v12.41.0+incompatible/fsutil/walker_windows.go (about)

     1  package fsutil
     2  
     3  // ////////////////////////////////////////////////////////////////////////////////// //
     4  //                                                                                    //
     5  //                         Copyright (c) 2022 ESSENTIAL KAOS                          //
     6  //      Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0>     //
     7  //                                                                                    //
     8  // ////////////////////////////////////////////////////////////////////////////////// //
     9  
    10  // ❗ Push changes current working directory and add previous working directory to stack
    11  func Push(dir string) string {
    12  	panic("UNSUPPORTED")
    13  	return ""
    14  }
    15  
    16  // ❗ Pop changes current working directory to previous in stack
    17  func Pop() string {
    18  	panic("UNSUPPORTED")
    19  	return ""
    20  }