Skip to content

Commit f6e70c4

Browse files
committed
sharepoint-client v1.0.0 inicial: cliente CLI para SharePoint Online, com autenticação Edge on-demand, paginação, fallback anti-throttling e modos list/get/add/update/delete
0 parents  commit f6e70c4

File tree

11 files changed

+3600
-0
lines changed

11 files changed

+3600
-0
lines changed

.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# -----------------------
2+
# Go build artifacts
3+
# -----------------------
4+
/dist/
5+
/bin/
6+
/sharepoint-client
7+
/sharepoint-client.exe
8+
*.exe
9+
*.exe~
10+
*.dll
11+
*.so
12+
*.dylib
13+
*.test
14+
*.out
15+
*.log
16+
*.txt
17+
18+
# Go workspace stuff (se algum dia usares workspaces)
19+
go.work
20+
21+
# -----------------------
22+
# Dados sensíveis / runtime
23+
# -----------------------
24+
private.json
25+
project_dump*.txt
26+
project_tree.txt
27+
logs_stderr.txt
28+
29+
# só por segurança se algum dia alguém fizer dump para dentro do repo
30+
gosip_*
31+
edgeondemand_*
32+
33+
# -----------------------
34+
# IDE / ambiente local
35+
# -----------------------
36+
.vscode/
37+
.idea/
38+
39+
# -----------------------
40+
# lixo de SO
41+
# -----------------------
42+
.DS_Store
43+
Thumbs.db

0 commit comments

Comments
 (0)