gitlab.com/apertussolutions/u-root@v7.0.0+incompatible/cmds/core/date/date_plan9.go (about)

     1  // Copyright 2015-2017 the u-root Authors. All rights reserved
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package main
     6  
     7  import (
     8  	"fmt"
     9  	"time"
    10  )
    11  
    12  func setDate(d string, z *time.Location) error {
    13  	return fmt.Errorf("Can not set the date")
    14  }