github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume3/section4/gopherface/client/handlers/profile.go (about)

     1  package handlers
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/EngineerKamesh/gofullstack/volume3/section4/gopherface/client/common"
     7  
     8  	"go.isomorphicgo.org/go/isokit"
     9  )
    10  
    11  func ProfileHandler(env *common.Env) isokit.Handler {
    12  	return isokit.HandlerFunc(func(ctx context.Context) {
    13  
    14  	})
    15  }