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

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