Skip to content

Commit

Permalink
feat: Move actual source to src/
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Apr 4, 2024
1 parent f7d384b commit 2275ac9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package main

import "fmt"
import "github.com/caffeine-addictt/video-manager/src"

// Run the actual CLI in src/
func main() {
fmt.Println("Running!")
src.Start()

}
4 changes: 4 additions & 0 deletions src/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package src

func Start() {
}

0 comments on commit 2275ac9

Please sign in to comment.