mirror of
https://github.com/harness/drone.git
synced 2025-05-07 11:40:12 +08:00
21 lines
294 B
Go
21 lines
294 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/drone/drone/common"
|
|
"github.com/drone/drone/datastore"
|
|
"github.com/drone/drone/datastore/bolt"
|
|
)
|
|
|
|
var (
|
|
revision string
|
|
version string
|
|
)
|
|
|
|
var ds datastore.Datastore
|
|
|
|
func main() {
|
|
ds, _ = bolt.New("drone.toml")
|
|
println(revision)
|
|
println(version)
|
|
}
|