Skip to content

Commit 14d0726

Browse files
committed
[TASK] Add minimalistic doc.go and copyright notice
1 parent e7b9c82 commit 14d0726

10 files changed

Lines changed: 47 additions & 0 deletions

File tree

config/config.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package config
26

37
// Config store the proxy configuration

doc.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright 2009 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
/*
6+
Package flow-debugproxy implements an xDebug proxy to
7+
debug proxy class directly from user code. You can use
8+
breakpoint directly in your code and the proxy did the
9+
mapping between your code and the proxy class.
10+
*/
11+
package main

dummypathmapper/dummypathmapper.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package dummypathmapper
26

37
import (

errorhandler/errorhanlder.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package errorhandler
26

37
import (

flowpathmapper/flowpathmapper.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package flowpathmapper
26

37
import (

logger/logger.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package logger
26

37
import (

main.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package main
26

37
import (

pathmapperfactory/pathmapperfactory.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package pathmapperfactory
26

37
import (

pathmapping/pathmapping.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package pathmapping
26

37
var mapping = map[string]string{}

xdebugproxy/xdebugproxy.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright 2015 Dominique Feyer <dfeyer@ttree.ch>. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
15
package xdebugproxy
26

37
import (

0 commit comments

Comments
 (0)