refactor: Rename Files

This commit is contained in:
2024-12-21 23:43:56 -05:00
commit a4ee66daba
4 changed files with 62 additions and 0 deletions

32
README.md Normal file
View File

@@ -0,0 +1,32 @@
# `onsonr/motr`
[![GoDoc](https://godoc.org/github.com/onsonr/motr?status.svg)](https://godoc.org/github.com/onsonr/motr)
[![Go Report Card](https://goreportcard.com/badge/github.com/onsonr/motr)](https://goreportcard.com/report/github.com/onsonr/motr)
`onsonr/motr` is the implementation of the Decentralized Web Node for the Sonr Blockchain.
## Install
```bash
go get github.com/onsonr/motr
```
## Usage
```go
package main
import (
"github.com/onsonr/motr"
)
func main() {
// Create a new decentralized web node
node := motr.NewNode()
// Start the decentralized web node
node.Start()
}
```
## License
[MIT](LICENSE)
Copyright (c) 2024, diDAO

12
Taskfile.yml Normal file
View File

@@ -0,0 +1,12 @@
# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
default:
cmds:
- echo "{{.GREETING}}"
silent: true

15
devbox.json Normal file
View File

@@ -0,0 +1,15 @@
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
"packages": [],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module github.com/onsonr/motr
go 1.23.4