pkg.re/essentialkaos/ek@v12.36.0+incompatible/ek.go (about)

     1  // +build !windows
     2  
     3  // Package ek is a set of auxiliary packages
     4  package ek
     5  
     6  // ////////////////////////////////////////////////////////////////////////////////// //
     7  //                                                                                    //
     8  //                         Copyright (c) 2021 ESSENTIAL KAOS                          //
     9  //      Apache License, Version 2.0 <https://www.apache.org/licenses/LICENSE-2.0>     //
    10  //                                                                                    //
    11  // ////////////////////////////////////////////////////////////////////////////////// //
    12  
    13  import (
    14  	"golang.org/x/crypto/bcrypt"
    15  
    16  	"pkg.re/essentialkaos/go-linenoise.v3"
    17  )
    18  
    19  // ////////////////////////////////////////////////////////////////////////////////// //
    20  
    21  // VERSION is current ek package version
    22  const VERSION = "12.36.0"
    23  
    24  // ////////////////////////////////////////////////////////////////////////////////// //
    25  
    26  // worthless is used as dependency fix
    27  func worthless() {
    28  	linenoise.Clear()
    29  	bcrypt.Cost(nil)
    30  }