Go to file
aditya-K2 99e0e8e615 Added generateDirectoryTree()
This function which generates a Directory Tree
from a given path string
for e.g
    if the String that is given is "home/what/dir" , "home/hello/foo"
	then it will return a FileNode ( Struct )
	which looks like this
	head{
	    [{
		[
		    {
			[ { [] dir } ]
			what
		    },
		    {
			[ { [] foo } ]
			hello
		    }
		]
		home
	    }]
	    "root"
	}
2021-10-11 12:09:24 +05:30
client.go All the Client related activities are in client.go 2021-10-09 17:21:47 +05:30
fileBrowser.go Added generateDirectoryTree() 2021-10-11 12:09:24 +05:30
go.mod intial commit 2021-10-08 23:24:45 +05:30
go.sum intial commit 2021-10-08 23:24:45 +05:30
LICENSE Initial commit 2021-10-08 20:22:09 +05:30
README.md Initial commit 2021-10-08 20:22:09 +05:30

goMP

MPD client inspired by ncmpcpp written in GO